2022-11-27 03:13:18 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Account } from 'masto'
|
|
|
|
|
|
|
|
defineProps<{
|
|
|
|
account: Account
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-27 04:54:46 +01:00
|
|
|
<VMenu placement="bottom-start" :delay="{ show: 500, hide: 100 }">
|
2022-11-27 03:13:18 +01:00
|
|
|
<slot />
|
|
|
|
<template #popper>
|
|
|
|
<AccountHoverCard :account="account" />
|
|
|
|
</template>
|
|
|
|
</VMenu>
|
|
|
|
</template>
|