2022-11-18 10:37:22 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Account } from 'masto'
|
|
|
|
|
2022-11-24 09:57:24 +01:00
|
|
|
const { link = true } = defineProps<{
|
2022-11-18 10:37:22 +01:00
|
|
|
account: Account
|
2022-11-24 09:57:24 +01:00
|
|
|
link?: boolean
|
2022-11-18 10:37:22 +01:00
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-25 11:20:01 +01:00
|
|
|
<NuxtLink :to="link ? getAccountPath(account) : undefined" min-w-0 flex gap-1 items-center>
|
2022-11-25 11:54:49 +01:00
|
|
|
<AccountAvatar :account="account" w-5 h-5 hover />
|
2022-11-25 14:21:42 +01:00
|
|
|
<ContentRichSetup hover:underline :content="getDisplayName(account)" :emojis="account.emojis" />
|
2022-11-21 11:16:04 +01:00
|
|
|
</NuxtLink>
|
2022-11-18 10:37:22 +01:00
|
|
|
</template>
|