1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<template> <owner-detail-account ref="ownerDetailAccount" /> </template> <script> import OwnerDetailAccount from './ownerDetailAccount' export default { components: { OwnerDetailAccount }, methods: { open(ownerId) { this.$refs.ownerDetailAccount.ownerDetailAccountInfo.ownerId = ownerId this.$refs.ownerDetailAccount._loadOwnerDetailAccountData(1, 10) } } } </script>