index.js 233 B

1234567891011121314
  1. import Vue from 'vue'
  2. import Vuex from 'vuex'
  3. Vue.use(Vuex)
  4. const store = new Vuex.Store({
  5. state: {
  6. tabbarRouter:1,
  7. searchDate:'',
  8. storeId:'',
  9. dicChange:false
  10. },
  11. mutations: {},
  12. actions: {}
  13. })
  14. export default store