mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 03:33:09 +02:00
0e4a111f81
Resolve #7779
20 lines
347 B
Vue
20 lines
347 B
Vue
<template>
|
|
<Mfm :text="user.name || user.username" :plain="true" :nowrap="nowrap" :custom-emojis="user.emojis"/>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
|
|
export default defineComponent({
|
|
props: {
|
|
user: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
nowrap: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
}
|
|
});
|
|
</script>
|