Change structure

This commit is contained in:
René Preuß
2022-10-31 17:45:12 +01:00
parent cd4b8ff726
commit fb90843b98
24 changed files with 1257 additions and 7 deletions

View File

@@ -1,14 +0,0 @@
import {defineStore} from 'pinia';
export const useMenuStore = defineStore('menu', {
state: () => {
return {
thirdLevelLinks: []
}
},
actions: {
updateThirdLevelLinks(links) {
this.thirdLevelLinks = links;
},
},
})