-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';
}
Source:stackexchange.com