码迷,mamicode.com
首页 > 其他好文 > 详细

vue富文本编辑器

时间:2020-12-15 12:13:24      阅读:3      评论:0      收藏:0      [点我收藏+]

标签: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

vue富文本编辑器

标签:wan   文档   html   content   编辑器   其他   from   edit   null   

原文地址:https://www.cnblogs.com/ljkltt/p/14109679.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!