hrms-user/src/modules/15_probationReport/store.ts
2024-12-24 22:23:39 +07:00

9 lines
334 B
TypeScript

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");
const assignId = ref<string>("");
return { tabMain, assignId };
});