You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
799 B
33 lines
799 B
import Vue from 'vue'
|
|
import Vuex from 'vuex'
|
|
import getters from './getters'
|
|
|
|
Vue.use(Vuex)
|
|
|
|
// https://webpack.js.org/guides/dependency-management/#requirecontext
|
|
const modulesFiles = require.context('./modules', true, /\.js$/)
|
|
|
|
// you do not need `import app from './modules/app'`
|
|
// it will auto require all vuex module from modules file
|
|
const modules = modulesFiles.keys().reduce((modules, modulePath) => {
|
|
// set './app.js' => 'app'
|
|
const moduleName = modulePath.replace(/^\.\/(.*)\.\w+$/, '$1');
|
|
const value = modulesFiles(modulePath);
|
|
modules[moduleName] = value.default;
|
|
return modules
|
|
}, {});
|
|
|
|
const store = new Vuex.Store({
|
|
state: {
|
|
counter: 0,
|
|
distributionSid: ''
|
|
|
|
},
|
|
mutations: {},
|
|
actions: {},
|
|
// getters: {},
|
|
modules,
|
|
getters
|
|
});
|
|
|
|
export default store
|
|
|