Polymer 2.0 Call Child Event From Parent
I keep running into bad examples or outdated 1.0 docs regarding calling child event from the parent in Polymer 2.0. Essentially all I want to accomplish is triggering a child even
Solution 1:
Give an id to
<child-element id="childEl"></child-element>
And fire child element function at parent like:
this.$.childEl.childEvent();
Post a Comment for "Polymer 2.0 Call Child Event From Parent"