1. 程式人生 > >vue中物件的監聽

vue中物件的監聽

watch: {
     //普通屬性的監聽
     options(val) {
         this.singleOptions = val
     },
     //物件的監聽
     itemList: {
         deep: true,
         handler: function() {
             this.multipleItemList = this.itemList
         
     }
}

物件要深複製,預設是淺複製