Explorar el Código

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

RuoYi hace 5 años
padre
commit
293b855866
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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
       },