diff --git a/src/components/editor/Editor.vue b/src/components/editor/Editor.vue index 2f35e74f6..e77e1cf8f 100644 --- a/src/components/editor/Editor.vue +++ b/src/components/editor/Editor.vue @@ -60,8 +60,10 @@ export default { }, quill: null, watch: { - value(newValue) { + value(newValue, oldValue) { + if (newValue !== oldValue && this.quill && !this.quill.hasFocus()) { this.renderValue(newValue); + } } }, mounted() {