no message

This commit is contained in:
STW_TTTY\stwtt 2024-04-04 12:38:48 +07:00
parent 5c1747262f
commit b130568ef4
12 changed files with 938 additions and 472 deletions

View file

@ -10,10 +10,13 @@ export const useDevelopmentDataStoreHistory = defineStore(
const visibleColumns = ref<string[]>([]);
const columns = ref<QTableProps["columns"]>([]);
const rows = ref<any[]>([])
const status = ref<boolean>(false)
return {
visibleColumns,
columns,
rows,
status,
};
}
);