I have a parent component that has a child component.
<child-component></child-component>
The child component has a function:
$ctrl.alertMe = function() {
alert('me');
}
How can I call this from using a binding via the parent component?
i.e. something of the sort...
<child-component alert-child="alertChild"></child-component>