13 lines
208 B
TypeScript
13 lines
208 B
TypeScript
|
import { defineStore } from "pinia";
|
||
|
|
||
|
export const usePermissionStore = defineStore("permission", {
|
||
|
state: () => {
|
||
|
return {
|
||
|
sections: [],
|
||
|
};
|
||
|
},
|
||
|
actions: {
|
||
|
logoutAccount() {},
|
||
|
},
|
||
|
});
|