1
0
mirror of https://github.com/elk-zone/elk synced 2024-11-28 14:58:10 +09:00
elk/components/account/AccountCard.vue

26 lines
535 B
Vue
Raw Normal View History

<script setup lang="ts">
import type { Account } from 'masto'
const { account } = defineProps<{
account: Account
2022-11-29 02:24:39 +09:00
hoverCard?: boolean
}>()
2022-11-24 16:53:27 +09:00
cacheAccount(account)
</script>
<template>
2022-11-23 23:39:48 +09:00
<div flex justify-between hover:bg-active transition-100>
2022-11-29 02:24:39 +09:00
<AccountInfo
:account="account" hover p1 as="router-link"
:hover-card="hoverCard"
2022-12-01 06:38:18 +09:00
shrink
overflow-hidden
:to="getAccountRoute(account)"
2022-11-29 02:24:39 +09:00
/>
2022-12-01 06:38:18 +09:00
<div h-full p1 shrink-0>
2022-11-23 07:40:20 +09:00
<AccountFollowButton :account="account" />
</div>
</div>
</template>