maxkb/ui/src/components/markdown/MdEditor.vue
2024-07-01 09:45:59 +08:00

15 lines
322 B
Vue

<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>