芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/cloud.pulsehost.co.uk/modules/AdminPanelWebclient/vue/.quasar/app.js
/** * 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.js > 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/store/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.use(Quasar, quasarUserOptions) const store = typeof createStore === 'function' ? await createStore({}) : createStore // obtain Vuex injection key in case we use TypeScript const { storeKey } = await import('app/src/store/index') const router = markRaw( typeof createRouter === 'function' ? await createRouter({store}) : createRouter ) // make router instance available in 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, storeKey, router } }