vuex watch deep code example
Example 1: vue deep watch
watch: {
colors: {
handler(newValue){
console.log('colors changed', newValue)
}, deep: true
}
}
Example 2: vue watch deep
export default {
name: 'ColorChange',
props: {
colors: {
type: Array,
required: true,
},
},
watch: {
colors: {
deep: true,
handler(value) {
console.log('The list of colors has changed!', value);
}
}
}
}
Example 3: vue watch deep property
watch: {
item: {
handler(val){
},
deep: true
}
}
Example 4: vue watch child property
...
watch:{
'item.someOtherProp'(newVal){
},
'item.prop'(newVal){
}
}
Example 5: vue watch object member
watch: {
item: {
handler(val){
},
deep: true
}
}