Fixing back ckeditor

parent 97558860
...@@ -46,11 +46,10 @@ ...@@ -46,11 +46,10 @@
}, },
watch: { watch: {
value (val) { value (val) {
//console.log(this.value, this.instance); let html = this.instance.getData();
this.instance.setData(this.value) if (val !== html) {
// let html = this.instance.getData(); this.instance.setData(val);
// if (val !== html) { }
// }
} }
}, },
mounted () { mounted () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment