| 1234567891011121314151617181920 |
- 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
- })
|