2024-11-04 15:29:16 +07:00
|
|
|
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");
|
2024-12-24 22:23:39 +07:00
|
|
|
const assignId = ref<string>("");
|
|
|
|
|
return { tabMain, assignId };
|
2024-11-04 15:29:16 +07:00
|
|
|
});
|