Przeglądaj źródła

修复Editor组件无法对响应式更新null值问题

RuoYi 5 lat temu
rodzic
commit
293b855866
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      ruoyi-ui/src/components/Editor/index.vue

+ 2 - 2
ruoyi-ui/src/components/Editor/index.vue

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