12345678910111213141516171819202122232425262728293031323334 |
- // 页面路径:store/index.js
- import Vue from 'vue'
- import Vuex from 'vuex'
- Vue.use(Vuex); //vue的插件机制
- //Vuex.Store 构造器选项
- const store = new Vuex.Store({
- state: { //存放状态
- config: {},
- city: '',
- popularity: 0,
- citydata:{}
- },
- getters: {
- config: state => state.config
- },
- mutations: {
- setconfig(state, data) {
- // 变更状态
- state.config = data
- },
- setcity(state, data) {
- // 变更状态
- state.city = data.district
- state.citydata = data
- },
- setpopularity(state, data) {
- // 变更状态
- state.popularity = data
- }
- }
- })
- export default store
|