You can create a helper method below in the methods of the parent component:
getChild(name) { for(let child of this.$children) if (child.$options.name==name) return child; },
And call the method of child components as follows:
this.getChild('child-component-tag-name').childMethodName(arguments);
I do not test it for Vue> = 2.0
Kamil Kiełczewski
source share