Some checks failed
Build BAB Application Deployment Artifact / build (push) Failing after 1m17s
fix: claude fixes to various errors
20 lines
486 B
TypeScript
20 lines
486 B
TypeScript
import { defineStore } from '#q-app/wrappers';
|
|
import { createPinia } from 'pinia';
|
|
/*
|
|
* If not building with SSR mode, you can
|
|
* directly export the Store instantiation;
|
|
*
|
|
* The function below can be async too; either use
|
|
* async/await or return a Promise which resolves
|
|
* with the Store instance.
|
|
*/
|
|
|
|
export default defineStore((/* { ssrContext } */) => {
|
|
const pinia = createPinia();
|
|
|
|
// You can add Pinia plugins here
|
|
// pinia.use(SomePiniaPlugin)
|
|
|
|
return pinia;
|
|
});
|