Skip to content

Instantly share code, notes, and snippets.

@RuslanHolovko
Created October 7, 2019 21:30
Show Gist options
  • Save RuslanHolovko/69f6f913b53194f18c3f64a7dd56b719 to your computer and use it in GitHub Desktop.
Save RuslanHolovko/69f6f913b53194f18c3f64a7dd56b719 to your computer and use it in GitHub Desktop.
watch object properties (Vue)
//data
data(){
return{
user:{
name: 'Andrew',
age: '20'
}
}
}
// hook
watch:{
user:{
handler(val){
console.log('watch elem');
console.log(val);
},
deep: true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment