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

31 lines
454 B
Vue
Raw Normal View History

2018-12-06 11:18:13 +09:00
<template>
2023-04-08 09:01:42 +09:00
<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>
2023-04-08 09:01:42 +09:00
import {} from "vue";
import * as misskey from "calckey-js";
2018-12-06 11:18:13 +09:00
2023-04-08 09:01:42 +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>