欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue中使用wangEditor富文本编辑器

程序员文章站 2024-03-20 10:33:06
...

第一步:导入依赖

npm install wangeditor --save

第二步:vue中配置使用

  vue中使用wangEditor富文本编辑器

import Editor from 'wangeditor'
this.editor = new Editor('#editor')
this.editor.customConfig.uploadImgShowBase64 = true
this.editor.customConfig.showLinkImg = false
this.editor.create()

番外:测试代码图片

vue中使用wangEditor富文本编辑器