mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 04:22:49 +08:00
30 lines
580 B
Vue
30 lines
580 B
Vue
<script setup lang="ts">
|
|
import type { ToolbarNames } from 'md-editor-v3'
|
|
|
|
import { useAppStore } from '@/store'
|
|
|
|
import { MdEditor } from 'md-editor-v3'
|
|
// https://imzbf.github.io/md-editor-v3/zh-CN/docs
|
|
import 'md-editor-v3/lib/style.css'
|
|
|
|
const model = defineModel<string>()
|
|
|
|
const appStore = useAppStore()
|
|
|
|
const toolbarsExclude: ToolbarNames[] = [
|
|
'mermaid',
|
|
'katex',
|
|
'github',
|
|
'htmlPreview',
|
|
'catalog',
|
|
]
|
|
</script>
|
|
|
|
<template>
|
|
<MdEditor
|
|
v-model="model" :theme="appStore.colorMode" :toolbars-exclude="toolbarsExclude"
|
|
/>
|
|
</template>
|
|
|
|
<style scoped></style>
|