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

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-09-19 10:15:14 +07:00
parent 2569fc1573
commit 0de7b3f523
2 changed files with 18 additions and 13 deletions

View file

@ -3,8 +3,8 @@ import { ref } from 'vue'
export const useDataStoreRetirement = defineStore("retirementDatastore", () => {
const tab = ref<any>("officer");
const type = ref<string>("officer");
const clickTab = (role:string) => {
type.value = role
const clickTab = (role: string) => {
type.value = role
}
return {
tab,