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