ทะเบียน

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-09-13 17:30:07 +07:00
parent 6acdb4722e
commit 619f36212a
11 changed files with 257 additions and 74 deletions

View file

@ -2,6 +2,7 @@ import { ref, computed } from "vue";
import { defineStore } from "pinia";
export const useProfileDataStore = defineStore("profile", () => {
const emplployeeClass = ref<string | null>('')
interface profile {
main: { columns: String[] };
education: { columns: String[] };
@ -79,5 +80,6 @@ export const useProfileDataStore = defineStore("profile", () => {
changeBirth,
retireText,
changeRetireText,
emplployeeClass,
};
});