多租户商城-商户端
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.

17 lines
277 B

2 years ago
  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. })