index.js 612 B

12345678910111213141516171819202122232425262728293031323334
  1. // 页面路径:store/index.js
  2. import Vue from 'vue'
  3. import Vuex from 'vuex'
  4. Vue.use(Vuex); //vue的插件机制
  5. //Vuex.Store 构造器选项
  6. const store = new Vuex.Store({
  7. state: { //存放状态
  8. config: {},
  9. city: '',
  10. popularity: 0,
  11. citydata:{}
  12. },
  13. getters: {
  14. config: state => state.config
  15. },
  16. mutations: {
  17. setconfig(state, data) {
  18. // 变更状态
  19. state.config = data
  20. },
  21. setcity(state, data) {
  22. // 变更状态
  23. state.city = data.district
  24. state.citydata = data
  25. },
  26. setpopularity(state, data) {
  27. // 变更状态
  28. state.popularity = data
  29. }
  30. }
  31. })
  32. export default store