/ Gists / Call a Child Component’s Method from Parent
On gists

Call a Child Component’s Method from Parent

Vue.js

component.vue Raw #

// Parent.vue
<template>
  <ChildComponent ref="child" />
</template>


// In Parent.vue's methods
this.$refs.child.methodName()