This commit is contained in:
Liyas Thomas
2019-12-10 21:58:08 +05:30
parent 60ba539104
commit d284002803
7 changed files with 180 additions and 27 deletions

View File

@@ -64,8 +64,8 @@ export default {
this.editor = editor;
this.cacheValue = this.value;
editor.on('change', () => {
editor.on("change", () => {
const content = editor.getValue();
this.$emit("input", content);
this.cacheValue = content;