Skip to content

Instantly share code, notes, and snippets.

@titusdecali
Last active June 20, 2021 01:51
Show Gist options
  • Save titusdecali/d82f85326e9b61dafec93a5d102f7b54 to your computer and use it in GitHub Desktop.
Save titusdecali/d82f85326e9b61dafec93a5d102f7b54 to your computer and use it in GitHub Desktop.
Vue: Access data in $parent from child
// In parent
data() {
return {
message: 'This is my message'
}
}
// In child template
<div>{{ $parent.message }}</div> // <-- results in 'This is my message'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment