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
}
},
评论