ประกาศเกษียณอายุราชการ
This commit is contained in:
parent
1530da36cf
commit
f592008bbe
6 changed files with 438 additions and 580 deletions
|
|
@ -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
|
||||
};
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue