正在显示
1 个修改的文件
包含
2 行增加
和
2 行删除
| @@ -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 | }, |
-
请 注册 或 登录 后发表评论