elk/components/status/StatusAccountDetails.vue

21 lines
588 B
Vue
Raw Normal View History

2022-11-24 14:20:50 +00:00
<script setup lang="ts">
import type { Account } from 'masto'
const { account, link = true } = defineProps<{
account: Account
link?: boolean
}>()
</script>
<template>
2022-11-27 02:13:18 +00:00
<AccountHoverWrapper :account="account">
<NuxtLink
:to="link ? getAccountPath(account) : undefined"
flex="~ col" min-w-0 md:flex="~ row gap-2" md:items-center
>
<ContentRich font-bold break-words hover:underline :content="getDisplayName(account, { rich: true })" :emojis="account.emojis" />
<AccountHandle :account="account" />
</NuxtLink>
</AccountHoverWrapper>
2022-11-24 14:20:50 +00:00
</template>