updated ทะเบียนประวัติ

This commit is contained in:
Warunee Tamkoo 2024-08-13 18:05:23 +07:00
parent d9b8791706
commit 5166d1c16a
6 changed files with 415 additions and 379 deletions

View file

@ -5,6 +5,7 @@ export const useDataStore = defineStore("data", () => {
// ref() คือการประกาศ state เหมือน vuex
const count = ref<number>(0);
const loader = ref<boolean>(false);
const drawerL = ref<boolean>(false);
const expandedReport2 = ref<string[]>([]);
const selectedReport2 = ref<string>("");
@ -66,6 +67,7 @@ export const useDataStore = defineStore("data", () => {
expandedRegister,
selectedRegister,
changeTreeRegister,
drawerL,
};
});