2023-01-06 19:12:00 +00:00
|
|
|
<script setup lang="ts">
|
2023-01-08 06:21:09 +00:00
|
|
|
import type { mastodon } from 'masto'
|
2023-01-06 19:12:00 +00:00
|
|
|
|
2023-02-05 13:00:25 +00:00
|
|
|
const { account, hideEmojis = false } = defineProps<{
|
2023-01-08 06:21:09 +00:00
|
|
|
account: mastodon.v1.Account
|
2023-02-05 13:00:25 +00:00
|
|
|
hideEmojis?: boolean
|
2023-01-06 19:12:00 +00:00
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<ContentRich
|
|
|
|
:content="getDisplayName(account, { rich: true })"
|
|
|
|
:emojis="account.emojis"
|
2023-02-05 13:00:25 +00:00
|
|
|
:hide-emojis="hideEmojis"
|
2023-01-06 19:12:00 +00:00
|
|
|
:markdown="false"
|
|
|
|
/>
|
|
|
|
</template>
|