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

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