16 lines
288 B
JavaScript
16 lines
288 B
JavaScript
|
export default { // 注意:全局模块中不需要开启命名空间
|
||
|
state: {
|
||
|
footStatus: 0, // 公用footer的激活状态码
|
||
|
},
|
||
|
mutations: {
|
||
|
// 公用footer的激活码
|
||
|
setFootStatus(state, provider) {
|
||
|
state.footStatus = provider;
|
||
|
}
|
||
|
},
|
||
|
actions: {
|
||
|
|
||
|
},
|
||
|
getters: {}
|
||
|
}
|