hm-examples/store/index.js

31 lines
647 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

// 页面路径store/index.js
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex);//vue的插件机制
//Vuex.Store 构造器选项
const store = new Vuex.Store({
state:{//存放状态
'titleList':[],
'imgList':[],
'publicColor':'',
statusHeight:0,
appletImg:''//默认图
},
mutations: {
updateAppletImgEv(state, str) {
state.appletImg = str;
},
updateHeightEv(state, str) {
state.statusHeight = str;
},
updateState(state, payload) {
// 变更状态
state.titleList = payload.titleList;
state.imgList = payload.imgList;
state.publicColor = payload.publicColor;
}
}
})
export default store