vue 监听store中的数值变化

computed: {
  isFollow () {
    return this.$store.state.demo.id;  //需要监听的数据
  }
},
watch: {
  isFollow (newVal, oldVal) {
    //do something
  }
},

 

posted @ 2021-07-15 17:32  浅笑19  阅读(1334)  评论(0编辑  收藏  举报