@quasar/app
Version:
Quasar Framework local CLI
28 lines (22 loc) • 615 B
JavaScript
import { store } from 'quasar/wrappers'
import { createStore } from 'vuex'
// import example from './module-example'
/*
* If not building with SSR mode, you can
* directly export the Store instantiation;
*
* The function below can be async too; either use
* async/await or return a Promise which resolves
* with the Store instance.
*/
export default store(function (/* { ssrContext } */) {
const Store = createStore({
modules: {
// example
},
// enable strict mode (adds overhead!)
// for dev mode and --debug builds only
strict: process.env.DEBUGGING
})
return Store
})