Fixed #6 - Fixed editor issue

pull/12/head
mertsincan 2019-05-03 16:18:41 +03:00
parent beafc5a03f
commit fd6b9abc25
1 changed files with 3 additions and 1 deletions

View File

@ -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() {