mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
31 lines
658 B
Vue
31 lines
658 B
Vue
<script setup lang="ts">
|
|
import type { ToolbarNames } from 'md-editor-v3'
|
|
|
|
import { MdEditor } from 'md-editor-v3' // https://imzbf.github.io/md-editor-v3/zh-CN/docs
|
|
import 'md-editor-v3/lib/style.css'
|
|
import { useAppStore } from '@/store'
|
|
|
|
const appStore = useAppStore()
|
|
|
|
const modelValue = defineModel()
|
|
const theme = computed(() => {
|
|
return appStore.darkMode ? 'dark' : 'light'
|
|
})
|
|
|
|
const toolbarsExclude: ToolbarNames[] = [
|
|
'mermaid',
|
|
'katex',
|
|
'github',
|
|
'htmlPreview',
|
|
'catalog',
|
|
]
|
|
</script>
|
|
|
|
<template>
|
|
<MdEditor
|
|
v-model="modelValue" :theme="theme" read-only :toolbars-exclude="toolbarsExclude"
|
|
/>
|
|
</template>
|
|
|
|
<style scoped></style>
|