fix 一些使用的小问题

This commit is contained in:
maxbad
2023-05-17 22:43:40 +08:00
parent 06292b603b
commit c967a5c8f0
4 changed files with 53 additions and 13 deletions

View File

@@ -196,7 +196,7 @@
createdAt: string;
status: number;
name: string;
index: string;
id: number;
children?: RowData[];
};
const data = ref([]);
@@ -318,7 +318,7 @@
},
];
const rowKey = (row: RowData) => row.index;
const rowKey = (row: RowData) => row.id;
function addTable() {
showModal.value = true;