FoundKey/packages/client/src/components/global/user-name.vue

15 lines
305 B
Vue

<template>
<Mfm :text="user.name || user.username" :plain="true" :nowrap="nowrap" :custom-emojis="user.emojis"/>
</template>
<script lang="ts" setup>
import * as misskey from 'foundkey-js';
withDefaults(defineProps<{
user: misskey.entities.User;
nowrap?: boolean;
}>(), {
nowrap: true,
});
</script>