InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of using Lightning's Aura: method Tag? |
|
Answer» The Aura: method tag can be used to specify a component API function. As a result, there's no need to fire and handle a component event, and we may CALL the method in the component's controller directly from the CLIENT. It also makes the code REQUIRED for a parent component to invoke a method on a child component that is a PART of the parent component easier to understand. |
|