18 lines
367 B
Vue
18 lines
367 B
Vue
<script setup lang="ts">
|
|
import type { mastodon } from 'masto'
|
|
|
|
const { account, hideEmojis = false } = defineProps<{
|
|
account: mastodon.v1.Account
|
|
hideEmojis?: boolean
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<ContentRich
|
|
:content="getDisplayName(account, { rich: true })"
|
|
:emojis="account.emojis"
|
|
:hide-emojis="hideEmojis"
|
|
:markdown="false"
|
|
/>
|
|
</template>
|