<aura:handler name="render" value="{!this}" action="{!c.onRender}"/>
In this example, the onRender action in your client-side controller handles initial rendering and rerendering of the component. You can choose any name for the action attribute.
The render event is fired after the init event, which is fired after component construction but before rendering.
The aura:valueRender event contains one attribute.
Attribute Name | Attribute Type | Description |
---|---|---|
value | Object | The component that rendered or rerendered. |