index.js 237 B

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