2022-11-18 09:37:22 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Account } from 'masto'
|
|
|
|
|
2022-11-24 08:57:24 +00:00
|
|
|
const { link = true } = defineProps<{
|
2022-11-18 09:37:22 +00:00
|
|
|
account: Account
|
2022-11-24 08:57:24 +00:00
|
|
|
link?: boolean
|
2022-11-18 09:37:22 +00:00
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-24 08:57:24 +00:00
|
|
|
<NuxtLink :to="link ? getAccountPath(account) : undefined" flex gap-1 items-center>
|
2022-11-22 23:42:20 +00:00
|
|
|
<AccountAvatar :account="account" w-5 h-5 />
|
2022-11-24 06:18:05 +00:00
|
|
|
<ContentRich :content="getDisplayName(account)" :emojis="account.emojis" />
|
2022-11-21 10:16:04 +00:00
|
|
|
</NuxtLink>
|
2022-11-18 09:37:22 +00:00
|
|
|
</template>
|