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