9 lines
334 B
TypeScript
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 };
|
|
});
|