公众号项目
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.

16 lines
290 B

1 year ago
  1. import Vue from "vue"
  2. import Vuex from "vuex"
  3. import state from './state.js'
  4. import actions from './actions.js'
  5. import getters from './getters.js'
  6. import mutations from './mutations.js'
  7. Vue.use(Vuex)
  8. export default new Vuex.Store({
  9. state,
  10. actions,
  11. getters,
  12. mutations,
  13. modules:{
  14. }
  15. })