import { defineStore } from "pinia"; import { ref } from 'vue' export const useDataStoreRetirement = defineStore("retirementDatastore", () => { const taboption = ref([{ name: "officer", id: "officer", label: 'ขรก.กทม.สามัญ' }, { name: "employee", id: "employee", label: "ลูกจ้างประจำ" }]) const tab = ref("officer"); const type = ref("officer"); const clickTab = (role: string) => { type.value = role } return { tab, type, clickTab, taboption }; });