Refer to the Aura component below:
HTML
<aura:component>
<aura:attribute name="contactInfo" type="Object"/>
<aura:attribute name="showContactInfo" type="boolean" default="true"/>
<aura:handler name="init" value="{!this}" action="{!c.init}"/>
<aura:if isTrue="{!v.showContactInfo}">
</aura:if>
</aura:component>
A developer receives complaints that the component loads slowly. Which change can the developer implement to make the component perform faster?
Submit