mi99
新手
新手
  • 最后登录2018-05-09
  • 发帖数4
阅读:9169回复:2

富文本编辑器

楼主#
更多 发布于:2017-12-19 22:04
vue中用 富文本编辑器的方法
使用npm下载:npm install wangeditor (注意 wangeditor 全部是小写字母
然后在需要使用的页面复制以下代码

<div id="editorElem" style="text-align:left"></div>
<button v-on:click="getContent">发表</button>
在script中

import E from 'wangeditor';
export default {
name: 'editor',
data () {
return {
editorContent: ''
}
},
methods: {
getContent: function () {
console.log(this.editorContent);
}
},
mounted() {
var editor = new E('#editorElem');
editor.customConfig.onchange = (html) => {
this.editorContent = html
};
editor.create()
}
}







最新喜欢:

doubleyongdouble...
lieutenant
新手
新手
  • 最后登录2018-09-28
  • 发帖数4
沙发#
发布于:2018-07-09 16:22
666666666666666, you are good
doubleyong
管理员
管理员
  • 最后登录2025-12-02
  • 发帖数1198
  • 最爱沙发
  • 喜欢达人
  • 原创写手
  • 社区居民
  • 忠实会员
板凳#
发布于:2017-12-20 09:32
赞赞赞
知识需要管理,知识需要分享
游客


返回顶部

公众号

公众号