VUE

vue 监听store中的数值变化

霄
2024-03-11 / 0 评论 / 10 阅读 / 正在检测是否收录...
computed: {
  isFollow () {
    return this.$store.state.demo.id;  //需要监听的数据
  }
},
watch: {
  isFollow (newVal, oldVal) {
    //do something
  }
},
扫描二维码,在手机上阅读!
55

评论

博主关闭了当前页面的评论