deep watch specifi property vue code example
Example 1: vue deep watch
watch: {
colors: {
handler(newValue){
console.log('colors changed', newValue)
}, deep: true
}
}
Example 2: vue watch deep property
watch: {
item: {
handler(val){
// do stuff
},
deep: true
}
}
Example 3: vue change deep element
Vue.set(vm.someObject, 'b', 2) //for objects
Vue.set(vm.items, indexOfItem, newValue) //forarrays