看了vuex会取值,但是不会存值,大佬能给个小demo学习一下,谢谢啦
1 回答
眼眸繁星
TA贡献1873条经验 获得超9个赞
store.js:
state:{
value:''
}
mutations:{
changeValue(state,newVal){ state.value=newVal }
}
.vue:
//存this.$store.commit('changeValue',1)//取console.log(this.$store.state.value)//1
添加回答
举报
0/150
提交
取消