July 2018
Beginner to intermediate
458 pages
9h 58m
English
To pass data down the hierarchy, you need to define attributes in child components, and then pass the attribute values from the parent component.
The parent component code is as follows:
<aura:component> <aura:attribute name="parentAttribute" type="String"/> <c:childComponent childAttribute="{!v.parentAttribute}"/></aura:component>
The child component code is as follows:
<aura:component> <aura:attribute name="childAttribute" type="String"/> </aura:component>
Read now
Unlock full access