1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<template> <a-room-detail-contract ref="contractComponent" /> </template> <script> import ARoomDetailContract from './aRoomDetailContract' export default { components: { ARoomDetailContract }, methods: { open(ownerId) { this.$refs.contractComponent.handleSwitch({ ownerId }) } } } </script>