no message

This commit is contained in:
setthawutttty 2024-10-21 13:52:29 +07:00
parent ae3cee9e2a
commit 72eb47e4e5
4 changed files with 72 additions and 7 deletions

View 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 };
});