2022-11-18 09:37:22 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Account } from 'masto'
|
|
|
|
|
|
|
|
defineProps<{
|
|
|
|
account: Account
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-21 10:16:04 +00:00
|
|
|
<NuxtLink :href="`/@${account.acct}`" flex gap-2 font-bold items-center>
|
2022-11-18 09:37:22 +00:00
|
|
|
<img :src="account.avatar" class="w-5 h-5 rounded">
|
2022-11-21 15:07:55 +00:00
|
|
|
<CommonRichContent :content="getDisplayName(account)" />
|
2022-11-21 10:16:04 +00:00
|
|
|
</NuxtLink>
|
2022-11-18 09:37:22 +00:00
|
|
|
</template>
|