chore(release): v0.0.3

This commit is contained in:
René Preuß
2023-02-17 20:19:34 +01:00
parent 6f32d46437
commit ea9f83cb7e
14 changed files with 58 additions and 44 deletions

View File

@@ -0,0 +1,15 @@
import {defineStore} from 'pinia';
import {ThirdLevelLink} from "../../types";
export const useMenuStore = defineStore('menu', {
state: () => {
return {
thirdLevelLinks: [] as Array<ThirdLevelLink>
}
},
actions: {
updateThirdLevelLinks(links: Array<ThirdLevelLink>) {
this.thirdLevelLinks = links;
},
},
})