style: format code for all

This commit is contained in:
LZHD
2021-07-06 01:01:42 +08:00
committed by 踏学吾痕
parent e1200f2dbe
commit 77a1a47110
114 changed files with 7068 additions and 1068 deletions

View File

@@ -44,7 +44,7 @@ import {
Pulldown,
// 表格
Table,
Table
} from "vxe-table";
// 全局默认参数
@@ -56,10 +56,10 @@ VXETable.setup({
// 自动监听父元素的变化去重新计算表格
autoResize: true,
// 鼠标移到行是否要高亮显示
highlightHoverRow: true,
highlightHoverRow: true
},
input: {
clearable: true,
clearable: true
},
// 对组件内置的提示语进行国际化翻译
i18n: (key, args) => i18n.global.t(key, args),
@@ -73,7 +73,7 @@ VXETable.setup({
return i18n.global.t(key, args);
}
return key;
},
}
});
export function useTable(app: App) {