集成 prettier 插件, 新增 npm run lint:prettier 命令

This commit is contained in:
就眠儀式
2021-12-24 13:42:56 +08:00
parent d814aca171
commit 6717dfead2
80 changed files with 1652 additions and 1450 deletions

View File

@@ -51,9 +51,11 @@ const slots = slot.default && slot.default();
const allChecked = ref(false);
const tableSelectedKeys = ref([...props.selectedKeys]);
const tableColumns = ref([...props.columns]);
const tableColumnKeys = ref(props.columns.map((item: any) => {
return item.key;
}));
const tableColumnKeys = ref(
props.columns.map((item: any) => {
return item.key;
})
);
const changeAll = function (checked: any) {
const ids = props.dataSource.map((item: any) => {