UI แบบสํารวจความคิดเห็นการทดลองปฏิบัติหน้าที่ราชการ

This commit is contained in:
setthawutttty 2024-10-31 14:52:06 +07:00
parent da958b9956
commit 149831f897
7 changed files with 341 additions and 3 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 isProbation = ref<boolean>(false)
const expandedReport2 = ref<string[]>([]);
const selectedReport2 = ref<string>("");
@ -66,6 +67,7 @@ export const useDataStore = defineStore("data", () => {
expandedRegister,
selectedRegister,
changeTreeRegister,
isProbation
};
});