1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<template> <div> <el-button @click="openComponent">{{ $t('feeDetailCarDemo.openComponent') }}</el-button> <fee-detail-car ref="feeDetailCar"></fee-detail-car> </div> </template> <script> import FeeDetailCar from './feeDetailCar' export default { name: 'FeeDetailCarDemo', components: { FeeDetailCar }, methods: { openComponent() { this.$refs.feeDetailCar.open({ payerObjId: '123' }) } } } </script>