Update vetur

This commit is contained in:
syuilo
2020-12-11 21:43:28 +09:00
parent 6848f05ea5
commit 629991443a
15 changed files with 70 additions and 29 deletions

View File

@ -0,0 +1,20 @@
<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>