I'm trying to watch the data object with multiple properties using deep invocation, I need to know in the watch call is triggered for which property change in the object. Is there any way to know the property in the handler.
data(){
return {
user:{
first_name:'',
last_name:'',
}
}
},
watch:{
user:{
deep:true,
handler(value){
//Here I want to know which property(first_name/last_name) change of the user object has triggered this.
}
}
}