no message

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-05-31 16:42:25 +07:00
parent 60dd477afe
commit e8d0e3de81
4 changed files with 655 additions and 5 deletions

View file

@ -0,0 +1,14 @@
import { defineStore } from "pinia";
import { ref } from "vue";
export const usePermissionsStore = defineStore("permissions", () => {
const typeOrganizational = ref<string>("current");
const activeId = ref<string>("");
const draftId = ref<string>("");
return {
typeOrganizational,
activeId,
draftId,
};
});