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.
23 lines
582 B
23 lines
582 B
import Vue from 'vue'
|
|
import Vuex from 'vuex'
|
|
import getters from './getters'
|
|
|
|
Vue.use(Vuex)
|
|
|
|
//实现自动导入模块
|
|
const modulesFiles = require.context('./modules', true, /\.js$/)
|
|
|
|
const modules = modulesFiles.keys().reduce((modules, modulePath) => {
|
|
//获取上级目录modules的 所有后缀名为 .js的文件
|
|
const moduleName = modulePath.replace(/^\.\/(.*)\.\w+$/, '$1')
|
|
const value = modulesFiles(modulePath)
|
|
modules[moduleName] = value.default
|
|
return modules
|
|
}, {})
|
|
|
|
const store = new Vuex.Store({
|
|
modules,
|
|
getters
|
|
})
|
|
|
|
export default store
|