- second commit

This commit is contained in:
Kaimbacher 2023-03-17 16:13:37 +01:00
commit 59a99ff3c8
61 changed files with 2634 additions and 1191 deletions

View file

@ -1,14 +0,0 @@
import { defineStore } from 'pinia';
export const LayoutService = defineStore('layout', {
state: () => ({
isAsideMobileExpanded: false, // via action
isAsideLgActive: false,
}),
actions: {
asideMobileToggle() {
this.isAsideMobileExpanded = !this.isAsideMobileExpanded;
},
},
});