安装vue3组件
yarn add @wangeditor/editor-for-vue@next
# 或者 npm install @wangeditor/editor-for-vue@next --save
页面中创建一个新的组件
<template><div style="border: 1px solid #ccc; text-align: left"><Toolbar style="border-bottom: 1px solid #ccc" :editor="editorRef" :defaultConfig="toolbarConfig" :mode="mode" /><Editor style="height: 500px; overflow-y: hidden" v-model="valueHtml" :defaultConfig="editorConfig" :maxLength="500":mode="mode" @onCreated="handleCreated" /></div>
</template><script lang="ts" setup>
import "@wangeditor/editor/dist/css/style.css"; // 引入 cssimport { onBeforeUnmount, ref, shallowRef, onMounted } from "vue&#