1
0
mirror of https://github.com/elk-zone/elk synced 2025-01-04 08:52:49 +09:00
elk/components/account/AccountInlineInfo.vue

15 lines
347 B
Vue
Raw Normal View History

2022-11-18 18:37:22 +09:00
<script setup lang="ts">
import type { Account } from 'masto'
defineProps<{
account: Account
}>()
</script>
<template>
<NuxtLink :href="getAccountPath(account)" flex gap-1 items-center>
<AccountAvatar :account="account" w-5 h-5 />
2022-11-24 15:18:05 +09:00
<ContentRich :content="getDisplayName(account)" :emojis="account.emojis" />
2022-11-21 19:16:04 +09:00
</NuxtLink>
2022-11-18 18:37:22 +09:00
</template>