首页 > 技术文章 > vue computed 深度监听data为对象的数据

tutao1995 2019-11-26 11:22 原文

1.computed:{

  computedAttr(){

    return this.obj.xxxx//监听的属性

  },

  watch:{

    computedAttr(){

      //do  something

    }

  }

}

推荐阅读