解决Quill自动聚焦导致的页面初始化定位问题

master
czc 2 years ago
parent 5dd57aea0f
commit 4d09fa3cc5

@ -137,6 +137,10 @@ export default {
}
});
}
this.Quill.enable(false);
setTimeout(()=>{
this.Quill.enable(true);
}, 1000);
this.Quill.pasteHTML(this.currentValue);
this.Quill.on("text-change", (delta, oldDelta, source) => {
const html = this.$refs.editor.children[0].innerHTML;

Loading…
Cancel
Save