2023-10-25 v-md-editor入门 放script setup里 12345678910111213141516import { createApp } from 'vue';import VMdPreview from '@kangc/v-md-editor/lib/preview';import '@kangc/v-md-editor/lib/style/preview.css';import githubTheme from '@kangc/v-md-editor/lib/theme/github.js';import '@kangc/v-md-editor/lib/theme/style/github.css';// highlightjsimport hljs from 'highlight.js';VMdPreview.use(githubTheme, { Hljs: hljs,});const app = createApp(/*...*/);app.use(VMdPreview); template里 1<v-md-preview :text="blogText"/> 前一篇 (no title) 后一篇