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