elk/components/status/StatusAccountDetails.vue

22 lines
596 B
Vue
Raw Normal View History

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