computed: {
isFollow () {
return this.$store.state.demo.id; //需要監聽的數據
}
},
watch: {
isFollow (newVal, oldVal) {
//do something
}
},