Refactor: Rename misskey-flavored-markdown --> mfm

This commit is contained in:
syuilo
2019-01-19 08:45:12 +09:00
parent 620722cb55
commit 466cae524e
29 changed files with 54 additions and 54 deletions

View File

@ -1,14 +1,14 @@
<template>
<mfm v-bind="$attrs" class="havbbuyv"/>
<mfm-core v-bind="$attrs" class="havbbuyv"/>
</template>
<script lang="ts">
import Vue from 'vue';
import Mfm from './mfm';
import MfmCore from './mfm';
export default Vue.extend({
components: {
Mfm
MfmCore
}
});
</script>