修復(fù)不用樣式去查找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,需要進(jìn)一步了解的同學(xué)可以移步到官網(wǎng)quill-editor嘱朽。quill-ed...