tab 2 ผลการประเมินการ ฯ แสดงเหมือนของระบบบริหารจัดการ

This commit is contained in:
setthawutttty 2024-11-04 15:29:16 +07:00
parent 3637b9dbdf
commit 3fec8ef37c
4 changed files with 776 additions and 255 deletions

View file

@ -0,0 +1,8 @@
import { defineStore } from "pinia";
import { ref } from "vue";
import type { DataOption } from "@/modules/10_registry/interface/index/Main";
export const useProbationReport = defineStore("ProbationReportStore", () => {
const tabMain = ref<string>("SURVEY");
return { tabMain };
});