MicroCommunityWeb/src/components/owner/ownerDetailAppUserDemo.vue
2025-07-01 16:51:19 +08:00

19 lines
404 B
Vue

<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>