vue 监听store中的数值变化
computed: {isFollow () {return this.$store.state.demo.id; //需要监听的数据}},watch: {isFollow (newVal, oldVal) {//do something}},
·
computed: {
isFollow () {
return this.$store.state.demo.id; //需要监听的数据
}
},
watch: {
isFollow (newVal, oldVal) {
//do something
}
},
更多推荐



所有评论(0)