/* eslint-disable */ /** * THIS FILE IS GENERATED AUTOMATICALLY. * DO NOT EDIT. * * You are probably looking on adding startup/initialization code. * Use "quasar new boot " and add it there. * One boot file per concern. Then reference the file(s) in quasar.config file > boot: * boot: ['file', ...] // do not add ".js" extension to it. * * Boot files are your "main.js" **/ import { Quasar } from 'quasar' import { markRaw } from 'vue' import RootComponent from 'app/src/App.vue' import createStore from 'app/src/stores/index' import createRouter from 'app/src/router/index' export default async function (createAppFn, quasarUserOptions) { // Create the app instance. // Here we inject into it the Quasar UI, the router & possibly the store. const app = createAppFn(RootComponent) app.config.performance = true app.use(Quasar, quasarUserOptions) const store = typeof createStore === 'function' ? await createStore({}) : createStore app.use(store) const router = markRaw( typeof createRouter === 'function' ? await createRouter({store}) : createRouter ) // make router instance available in store store.use(({ store }) => { store.router = router }) // Expose the app, the router and the store. // Note that we are not mounting the app here, since bootstrapping will be // different depending on whether we are in a browser or on the server. return { app, store, router } }