瀏覽代碼

Table: update column width before updating height (#10236)

杨奕 7 年之前
父節點
當前提交
38e9b6eca6
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/table/src/table.vue

+ 1 - 1
packages/table/src/table.vue

@@ -438,10 +438,10 @@
       },
 
       doLayout() {
+        this.layout.updateColumnsWidth();
         if (this.shouldUpdateHeight) {
           this.layout.updateElsHeight();
         }
-        this.layout.updateColumnsWidth();
       }
     },