首先安装vditor

npm install vditor --save

在组件中使用

<template>
  <div id="vditor"></div>
</template>
<script setup>
import {  defineProps, ref, onMounted } from "vue";
import Vditor from "vditor";
import "vditor/dist/index.css";
const contentEditor = ref("");
onMounted(() => { 
  contentEditor.value = new Vditor("vditor", { 
    height: 360,
    toolbarConfig: { 
      pin: true,
    },
    cache: { 
      enable: false,
    },
    after: () => { 
      contentEditor.value.setValue("hello,Vditor+Vue!");
    },
  });
});
</script>
<style scoped>
a { 
  color: #42b983;
}
</style>

本文地址:https://blog.csdn.net/qq_38494372/article/details/112839902