quanwei
18 hours ago c441dea81bd86bdfb12dff35821fed51f4cc91c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import Vue from 'vue'
import Vuex from 'vuex'
import common from './modules/common/index.js'
import user from './modules/user/index.js'
 
Vue.use(Vuex)
 
export default new Vuex.Store({
  modules: {
      common:common,
      user:user
  }
  /* state,
  actions,
  mutations */
})