elk/components/account/AccountInlineInfo.vue
2022-11-23 07:42:20 +08:00

15 lines
359 B
Vue

<script setup lang="ts">
import type { Account } from 'masto'
defineProps<{
account: Account
}>()
</script>
<template>
<NuxtLink :href="`/@${account.acct}`" flex gap-2 font-bold items-center>
<AccountAvatar :account="account" w-5 h-5 />
<CommonRichContent :content="getDisplayName(account)" :emojis="account.emojis" />
</NuxtLink>
</template>