elk/components/account/AccountCard.vue
2022-11-29 01:24:42 +08:00

24 lines
490 B
Vue

<script setup lang="ts">
import type { Account } from 'masto'
const { account } = defineProps<{
account: Account
hoverCard?: boolean
}>()
cacheAccount(account)
</script>
<template>
<div flex justify-between hover:bg-active transition-100>
<AccountInfo
:account="account" hover p1 as="router-link"
:hover-card="hoverCard"
:to="getAccountPath(account)"
/>
<div h-full p1>
<AccountFollowButton :account="account" />
</div>
</div>
</template>