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
831 B
33 lines
831 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:{ |
|
routers:[] |
|
}, |
|
mutations:{ |
|
routers(s,v){ |
|
s.routers = v |
|
} |
|
}, |
|
modules, |
|
getters |
|
}); |
|
|
|
export default store; |