chore: Update dependencies to latest
Some checks failed
Build BAB Application Deployment Artifact / build (push) Failing after 1m17s

fix: claude fixes to various errors
This commit is contained in:
2026-03-15 10:41:12 -04:00
parent 5d08b1c927
commit 67c7a3c050
44 changed files with 14292 additions and 8939 deletions

View File

@@ -1,18 +1,5 @@
import { store } from 'quasar/wrappers';
import { defineStore } from '#q-app/wrappers';
import { createPinia } from 'pinia';
import { Router } from 'vue-router';
/*
* When adding new properties to stores, you should also
* extend the `PiniaCustomProperties` interface.
* @see https://pinia.vuejs.org/core-concepts/plugins.html#typing-new-store-properties
*/
declare module 'pinia' {
export interface PiniaCustomProperties {
readonly router: Router;
}
}
/*
* If not building with SSR mode, you can
* directly export the Store instantiation;
@@ -22,7 +9,7 @@ declare module 'pinia' {
* with the Store instance.
*/
export default store((/* { ssrContext } */) => {
export default defineStore((/* { ssrContext } */) => {
const pinia = createPinia();
// You can add Pinia plugins here