vue 获取及修改store.js里的公共变量
data(){
return{
newVal:''
}
},
methods:{
edit(newVal){
this.$store.commit('edit',newVal)
}
},
computed:{
//读取store中的属性
userid:function(){
return this.$store.state.userId
}
}
state: {
userId:''
},
mutations: {
edit(state,newVal){
// newVal是修改后传过来的
state.userId=newVal
}
},
共有 0 条评论