aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_popover/user_popover.js
blob: bffd59625bd359ebfc41df01fa97915b5fb1d802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { defineAsyncComponent } from 'vue'

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

export default UserPopover