This commit is contained in:
Warunee Tamkoo 2024-12-24 22:23:39 +07:00
parent a43279b314
commit 21f1787dd0
3 changed files with 18 additions and 4 deletions

View file

@ -4,5 +4,6 @@ import type { DataOption } from "@/modules/10_registry/interface/index/Main";
export const useProbationReport = defineStore("ProbationReportStore", () => {
const tabMain = ref<string>("SURVEY");
return { tabMain };
const assignId = ref<string>("");
return { tabMain, assignId };
});