watch deep vuex json 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
}
}