โครงสร้าอัตรากำลัง
This commit is contained in:
parent
18b7a3b4e6
commit
433707964a
8 changed files with 583 additions and 5 deletions
12
src/modules/02_organizationalNew/store/organizational.ts
Normal file
12
src/modules/02_organizationalNew/store/organizational.ts
Normal 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,
|
||||
};
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue