mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
16 lines
445 B
Vue
16 lines
445 B
Vue
<script setup lang="ts">
|
|
import type { Account } from 'masto'
|
|
|
|
const { link = true } = defineProps<{
|
|
account: Account
|
|
link?: boolean
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLink :to="link ? getAccountPath(account) : undefined" min-w-0 flex gap-1 items-center>
|
|
<AccountAvatar :account="account" w-5 h-5 />
|
|
<ContentRich hover:underline :content="getDisplayName(account, { rich: true })" :emojis="account.emojis" />
|
|
</NuxtLink>
|
|
</template>
|