store.ts 183 Bytes EditWeb IDE 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 };