vue 监听store中的数值

 
computed: {
  isFollow () {
    return this.$store.state.demo.id;  //需要监听的数据
  }
},
watch: {
  isFollow (newVal, oldVal) {
    //do something
  }
},
posted @ 2018-09-20 14:30  Mr_R  阅读(7068)  评论(0编辑  收藏  举报