permission form
This commit is contained in:
parent
04e66dd918
commit
68efdc131b
8 changed files with 273 additions and 3 deletions
|
@ -205,7 +205,7 @@ export const useNavigationStore = defineStore("navigation", {
|
|||
{
|
||||
key: "#user",
|
||||
title: "Benutzer",
|
||||
component: shallowRef(defineAsyncComponent(() => import("@/views/admin/members/Overview.vue"))),
|
||||
component: shallowRef(defineAsyncComponent(() => import("@/views/admin/user/User.vue"))),
|
||||
},
|
||||
]
|
||||
: []),
|
||||
|
|
12
src/stores/admin/permission.ts
Normal file
12
src/stores/admin/permission.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { defineStore } from "pinia";
|
||||
|
||||
export const usePermissionStore = defineStore("permission", {
|
||||
state: () => {
|
||||
return {
|
||||
sections: [],
|
||||
};
|
||||
},
|
||||
actions: {
|
||||
logoutAccount() {},
|
||||
},
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue