2022-11-18 10:37:22 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Account } from 'masto'
|
|
|
|
|
|
|
|
defineProps<{
|
|
|
|
account: Account
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-23 08:46:34 +01:00
|
|
|
<NuxtLink :href="`/@${account.acct}`" flex gap-1 items-center>
|
2022-11-23 00:42:20 +01:00
|
|
|
<AccountAvatar :account="account" w-5 h-5 />
|
|
|
|
<CommonRichContent :content="getDisplayName(account)" :emojis="account.emojis" />
|
2022-11-21 11:16:04 +01:00
|
|
|
</NuxtLink>
|
2022-11-18 10:37:22 +01:00
|
|
|
</template>
|