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.

11 lines
176 B

3 years ago
  1. import Vue from 'vue'
  2. import Vuex from 'vuex'
  3. import user from './modules/user/index.js'
  4. Vue.use(Vuex)
  5. export default new Vuex.Store({
  6. modules: {
  7. user
  8. }
  9. })