store.ts 183 Bytes
Newer Older
hucy's avatar
hucy committed
1 2 3 4 5 6 7 8 9
import { boot } from 'quasar/wrappers';
import { createPinia } from 'pinia';

const store = createPinia();
export default boot(({ app }) => {
  app.use(store);
});

export { store };