pleroma-fe/src/components/user_popover/user_popover.js

15 lines
336 B
JavaScript
Raw Normal View History

import UserCard from '../user_card/user_card.vue'
import { defineAsyncComponent } from 'vue'
const UserPopover = {
name: 'UserPopover',
props: [
'userId', 'overlayCenters', 'disabled'
],
components: {
UserCard,
Popover: defineAsyncComponent(() => import('../popover/popover.vue'))
}
}
export default UserPopover