[Vuejs]-Vue – binding an array from child to parent component

-1πŸ‘

βœ…

I don’t know Vue exactly but in angular we can use binding like this:

<child-component #getChild></child-component>
<div>{{getChild.message}}</div>
<button (click)="getChild.childMethod()">Call child method</button>

In child component:

childMethod() {
  this.message = 'child value';
}

Leave a comment