监听vuex变量的变化
2020-05-09 本文已影响0人
小哼唧麻
computed: {
...mapState({
guideStep: state => state.guide.step
})
},
watch: {
guideStep(value, old) {
return this.step = value;
}
},
computed: {
...mapState({
guideStep: state => state.guide.step
})
},
watch: {
guideStep(value, old) {
return this.step = value;
}
},