elk/components/account/AccountInlineInfo.vue

15 wiersze
349 B
Vue
Czysty Zwykły widok Historia

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