โครงสร้าอัตรากำลัง

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-01-26 09:19:55 +07:00
parent 18b7a3b4e6
commit 433707964a
8 changed files with 583 additions and 5 deletions

View file

@ -0,0 +1,12 @@
import { defineStore } from "pinia";
import { ref } from "vue";
export const useOrganizational = defineStore("organizationalStore", () => {
const typeOrganizational = ref<string>("current");
const statusView = ref<string>("list");
return {
typeOrganizational,
statusView,
};
});