集成 prettier 插件, 新增 npm run lint:prettier 命令
This commit is contained in:
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user