UnisKB/ui/src/components/markdown/MdEditor.vue

15 lines
322 B
Vue
Raw Normal View History

2024-07-01 01:45:59 +00:00
<template>
<MdEditor noIconfont noPrettier v-bind="$attrs">
<template #defFooters>
<slot name="defFooters"> </slot>
</template>
</MdEditor>
</template>
<script setup lang="ts">
import { MdEditor } from 'md-editor-v3'
import './assets/markdown-iconfont.js'
defineOptions({ name: 'MdEditor' })
</script>