Skip to content

Instantly share code, notes, and snippets.

@simpluslabs
Created November 13, 2018 05:22
Show Gist options
  • Save simpluslabs/6917aa5d7c6d4cfdca31f14efe2d84a4 to your computer and use it in GitHub Desktop.
Save simpluslabs/6917aa5d7c6d4cfdca31f14efe2d84a4 to your computer and use it in GitHub Desktop.
<aura:component >
<!--ChildComp1-->
<aura:attribute name="noOfTimesClicked" type="Integer"/>
<aura:handler name="init" value="{! this}" action="{! c.doInit}" />
<aura:handler name="change" value="{! v.noOfTimesClicked}" action="{! c.handleChange}" />
<c:SubChild1 noOfTimesClicked="{! v.noOfTimesClicked}"/>
<c:SubChild2 />
</aura:component>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment