no message
This commit is contained in:
parent
ae3cee9e2a
commit
72eb47e4e5
4 changed files with 72 additions and 7 deletions
10
src/modules/17_acting/store/Main.ts
Normal file
10
src/modules/17_acting/store/Main.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import { ref } from "vue";
|
||||
import { defineStore } from "pinia";
|
||||
|
||||
export const useActingStore = defineStore("actingStore", () => {
|
||||
const rootId = ref<string>("");
|
||||
const isOfficer = ref<boolean | null>(null);
|
||||
const isStaff = ref<boolean | null>(null);
|
||||
const orgPublishDate = ref<Date | null>(null);
|
||||
return { isOfficer, isStaff, rootId,orgPublishDate };
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue