iceshrimp/packages/client/src/components/global/MkUserName.vue

22 lines
433 B
Vue
Raw Normal View History

2018-12-06 11:18:13 +09:00
<template>
<Mfm :class="$style.root" :text="user.name || user.username" :plain="true" :nowrap="nowrap" :custom-emojis="user.emojis"/>
2018-12-06 11:18:13 +09:00
</template>
<script lang="ts" setup>
import { } from 'vue';
2022-12-12 12:24:12 +09:00
import * as misskey from 'calckey-js';
2018-12-06 11:18:13 +09:00
const props = withDefaults(defineProps<{
user: misskey.entities.User;
nowrap?: boolean;
}>(), {
nowrap: true,
2018-12-06 11:18:13 +09:00
});
</script>
<style lang="scss" module>
.root {
unicode-bidi: isolate;
}
</style>