vue深度监听对象

watch: {
  picker: {  //为对象名
    handler() {    //对象内数据变化 会执行此方法
     document.getElementById('nowColor').style.color=this.picker.color
    },
    deep: true  //深度监听申明字段
  }
}

 

posted @ 2022-05-19 16:47  undefinebo  阅读(63)  评论(0)    收藏  举报