2018-12-06 03:18:13 +01:00
|
|
|
<template>
|
2022-12-30 00:41:22 +01:00
|
|
|
<Mfm :text="user.name ?? user.username" :author="user" :plain="true" :nowrap="nowrap"/>
|
2018-12-06 03:18:13 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-15 23:47:28 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
|
|
|
import * as misskey from 'misskey-js';
|
2018-12-06 03:18:13 +01:00
|
|
|
|
2022-01-15 23:47:28 +01:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
user: misskey.entities.User;
|
|
|
|
nowrap?: boolean;
|
|
|
|
}>(), {
|
|
|
|
nowrap: true,
|
2018-12-06 03:18:13 +01:00
|
|
|
});
|
|
|
|
</script>
|