2023-06-21 18:07:28 +08:00

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>