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 04:30:21 +00:00
|
|
|
<NuxtLink
|
2022-11-30 17:15:18 +00:00
|
|
|
:to="link ? getAccountRoute(account) : undefined"
|
2022-11-27 04:30:21 +00:00
|
|
|
flex="~ col" min-w-0 md:flex="~ row gap-2" md:items-center
|
|
|
|
text-link-rounded
|
|
|
|
>
|
2022-12-06 16:37:58 +00:00
|
|
|
<ContentRich
|
|
|
|
font-bold line-clamp-1 ws-pre-wrap break-all
|
|
|
|
:content="getDisplayName(account, { rich: true })"
|
|
|
|
:emojis="account.emojis"
|
|
|
|
/>
|
2022-11-27 04:30:21 +00:00
|
|
|
<AccountHandle :account="account" />
|
|
|
|
</NuxtLink>
|
2022-11-24 14:20:50 +00:00
|
|
|
</template>
|