1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-16 00:49:58 +01:00
elk/components/account/AccountHoverWrapper.vue

17 lines
279 B
Vue
Raw Normal View History

2022-11-27 02:13:18 +00:00
<script setup lang="ts">
import type { Account } from 'masto'
defineProps<{
account: Account
}>()
</script>
<template>
<VMenu placement="bottom-start">
<slot />
<template #popper>
<AccountHoverCard :account="account" />
</template>
</VMenu>
</template>