标签:wan 文档 html content 编辑器 其他 from edit null
npm i wangeditor --save
页面单独引入
import E from "wangeditor";
<div id="div1"></div>
data(){
return{
editor:null,
}
}
mounted() {
const editor = new E(‘#div1‘);
// 配置 onchange 回调函数,将数据同步到 vue 中
editor.config.onchange = (newHtml) => {
this.ruleForm.activity_content = newHtml;
}
editor.create();
this.editor = editor;
},
其他操作可查看官方文档:http://www.wangeditor.com/index.html
标签:wan 文档 html content 编辑器 其他 from edit null
原文地址:https://www.cnblogs.com/ljkltt/p/14109679.html