From fd6b9abc25029bf9890157b31264b31bcc4e54d7 Mon Sep 17 00:00:00 2001 From: mertsincan Date: Fri, 3 May 2019 16:18:41 +0300 Subject: [PATCH] Fixed #6 - Fixed editor issue --- src/components/editor/Editor.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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() {