flaschengeist-frontend/src/boot/store.ts

10 lines
203 B
TypeScript
Raw Normal View History

/**
* This boot file installs the global pinia instance
*/
import { pinia } from '@flaschengeist/api';
import { boot } from 'quasar/wrappers';
export default boot(({ app }) => {
app.use(pinia);
});