This commit is contained in:
zk
2023-12-20 09:05:44 +08:00
parent 8dccce0208
commit 26f4a6ad81
20 changed files with 804 additions and 380 deletions
@@ -311,4 +311,17 @@ export const columns = [
// fixed: 'right',
// width: 80,
// },
];
];
export function useChangeTable() {
const refresh = ref(true)
function setRefresh() {
refresh.value = !refresh.value
}
return {
refresh,
setRefresh
}
}