Selaa lähdekoodia

!82 修复Editor组件在传入内容为null时无法响应式更新其内容的bug
Merge pull request !82 from HaoRan/N/A

若依 4 vuotta sitten
vanhempi
commit
aed958b1be
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  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 {
     value: {
       handler(val) {
         if (val !== this.currentValue) {
-          this.currentValue = val;
+          this.currentValue = val === null ? "" : val;
           if (this.Quill) {
-            this.Quill.pasteHTML(this.value);
+            this.Quill.pasteHTML(this.currentValue);
           }
         }
       },