Skip to content

Instantly share code, notes, and snippets.

@titusdecali
Created June 20, 2021 09:11
Show Gist options
  • Save titusdecali/91065300deab212e25cd91cc2df74cea to your computer and use it in GitHub Desktop.
Save titusdecali/91065300deab212e25cd91cc2df74cea to your computer and use it in GitHub Desktop.
Vue: Access parent's data from child with $refs
// Parent.vue
<template>
<ChildComponent ref="child" />
</template>
// In Parent.vue's methods
this.$refs.child.methodName()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment