Skip to content

Instantly share code, notes, and snippets.

@rslhdyt
Last active November 30, 2019 06:25
Show Gist options
  • Save rslhdyt/ccf138cc895bf0418ffb4462f3557517 to your computer and use it in GitHub Desktop.
Save rslhdyt/ccf138cc895bf0418ffb4462f3557517 to your computer and use it in GitHub Desktop.
[watch nested data] vue js watch nested data #vuejs #javascript #vuewatch
<script>
export default {
data: () => ({
form: {
id: 1
text: 'ABC'
}
}),
watch:{
'form.id': function (newVal, oldVal){
//to work with changes in someOtherProp
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment