elk/components/account/AccountInlineInfo.vue

22 lines
569 B
Vue
Raw Normal View History

2022-11-18 09:37:22 +00:00
<script setup lang="ts">
import type { Account } from 'masto'
2022-11-24 08:57:24 +00:00
const { link = true } = defineProps<{
2022-11-18 09:37:22 +00:00
account: Account
2022-11-24 08:57:24 +00:00
link?: boolean
2022-11-18 09:37:22 +00:00
}>()
</script>
<template>
2022-11-27 04:30:21 +00:00
<AccountHoverWrapper :account="account">
<NuxtLink
:to="link ? getAccountPath(account) : undefined"
:class="link ? 'text-link-rounded' : ''"
min-w-0 flex gap-1 items-center
>
<AccountAvatar :account="account" w-5 h-5 />
<ContentRich :content="getDisplayName(account, { rich: true })" :emojis="account.emojis" />
</NuxtLink>
</AccountHoverWrapper>
2022-11-18 09:37:22 +00:00
</template>