hrms-user/src/modules/15_probationReport/store.ts

10 lines
334 B
TypeScript
Raw Normal View History

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 };
});