修复不用样式去查找dom,这样页面就可以有多个上传控件
mounted() {
const quill = this.$refs.myQuillEditor.quill
quill._upload = this.$refs.upload
},
toolbar: {
container: toolbarOptions,
// container: "#toolbar",
handlers: {
image: function(value) {
if (value) {
this.quill._upload.$el.querySelector('input').click()
} else {
this.quill.format('image', false)
}
}
vue整合quill-editor汉化+element文件上传前言 最近需要项目中需要使用富文本编辑器,对比了常见的几款之后,决定采用quill-editor,需要进一步了解的同学可以移步到官网quill-editor。quill-ed...