ประกาศเกษียณอายุราชการ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-09-19 16:45:07 +07:00
parent 1530da36cf
commit f592008bbe
6 changed files with 438 additions and 580 deletions

View file

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