Skip to content

Instantly share code, notes, and snippets.

@yejiang1015
Created November 17, 2017 01:43
Show Gist options
  • Select an option

  • Save yejiang1015/293b1e6610b0c06b7cc297994cf6eb04 to your computer and use it in GitHub Desktop.

Select an option

Save yejiang1015/293b1e6610b0c06b7cc297994cf6eb04 to your computer and use it in GitHub Desktop.
// 1
watch: {
watchObj: {
deep: true,
handler(val) {
console.log(val, 'watchVal');
}
}
}
// 2
watch: {
watchObj(val) {
console.log(val, 'watchVal');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment