InterviewSolution
| 1. |
What Is The Use Of The Aura:method Tag In Lightning ? |
|
Answer» we can Use < aura:method > to define a method as part of a component’s API. This enables us to directly call a method in a component’s client-side controller instead of firing and handling a component EVENT. Using simplifies the code needed for a parent component to call a method on a CHILD component that it contains. we can Use < aura:method > to define a method as part of a component’s API. This enables us to directly call a method in a component’s client-side controller instead of firing and handling a component event. Using simplifies the code needed for a parent component to call a method on a child component that it contains. |
|