1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<template> <simplify-owner-car ref="simplifyOwnerCar"></simplify-owner-car> </template> <script> import SimplifyOwnerCar from '@/components/simplify/simplifyOwnerCar' export default { name: 'SimplifyOwnerCarDemo', components: { SimplifyOwnerCar }, methods: { openSimplifyOwnerCar(params) { this.$refs.simplifyOwnerCar.$emit('switch', params) } } } </script>