index.js 277 B

1234567891011121314151617
  1. import Vue from 'vue'
  2. import Vuex from 'vuex'
  3. import * as getters from './getter'
  4. import state from './state'
  5. import mutations from './mutations'
  6. Vue.use(Vuex)
  7. console.log({
  8. getters,
  9. state,
  10. mutations
  11. })
  12. export default new Vuex.Store({
  13. getters,
  14. state,
  15. mutations
  16. })