作者 若依
提交者 Gitee

!82 修复Editor组件在传入内容为null时无法响应式更新其内容的bug

Merge pull request !82 from HaoRan/N/A
@@ -71,9 +71,9 @@ export default { @@ -71,9 +71,9 @@ export default {
71 value: { 71 value: {
72 handler(val) { 72 handler(val) {
73 if (val !== this.currentValue) { 73 if (val !== this.currentValue) {
74 - this.currentValue = val; 74 + this.currentValue = val === null ? "" : val;
75 if (this.Quill) { 75 if (this.Quill) {
76 - this.Quill.pasteHTML(this.value); 76 + this.Quill.pasteHTML(this.currentValue);
77 } 77 }
78 } 78 }
79 }, 79 },