Valid CRT-450 Dumps shared by ExamDiscuss.com for Helping Passing CRT-450 Exam! ExamDiscuss.com now offer the newest CRT-450 exam dumps, the ExamDiscuss.com CRT-450 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com CRT-450 dumps with Test Engine here:
A developer created a child Lightning web component nested inside a parent Lightning web component. The parent component needs to pass a string value to the child component. In which two ways can this be accomplished? Choose 2 answers
Correct Answer: A,B
Public Method (A):The parent component can call a public method defined in the child component to pass data directly. Reference:LWC Communication: Public Methods Public Property (B):The parent component can bind data to a public property in the child component using the attribute syntax. Reference:LWC Communication: API Properties Incorrect Options: C:Apex controllers are not used for direct communication between parent and child components. D:Custom events are used for communication from child to parent, not parent to child.