Skip to content

Instantly share code, notes, and snippets.

@anilsomasundaran
Last active April 20, 2018 07:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anilsomasundaran/4b37da6094a164d516fc299aebce3bdd to your computer and use it in GitHub Desktop.
Save anilsomasundaran/4b37da6094a164d516fc299aebce3bdd to your computer and use it in GitHub Desktop.
<aura:component extensible="true" abstract="true">
<aura:attribute name="record" type="String" />
In parent Component - Record: {!v.record} - {!v.body}
</aura:component>
<aura:component extends="c:BaseComponent">
<aura:set attribute="record" value="Record Value Set From Child Component " />
Child Component
</aura:component>
<aura:application >
<c:ChildComponent />
</aura:application>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment