Просмотр исходного кода

Merge commit 'refs/pull/308/head' of https://gitee.com/zuohuaijun/Admin.NET into next

zuohuaijun 4 лет назад
Родитель
Сommit
982dc78834

+ 3 - 1
Vben2/src/components/Table/src/components/settings/ColumnSetting.vue

@@ -184,7 +184,9 @@
       watchEffect(() => {
         const columns = table.getColumns();
         if (columns.length && !state.isInit) {
-          init();
+          setTimeout(() => {
+            init();
+          }, 0);
         }
       });