Question 10
Given the following parent-child setup in Vue 2:
and inside the child:
Which statements are correct?
flows from parent to child through props.
is a custom event sent from child to parent.
The child should directly change to update the parent source of truth.
If changes in the parent, the child can receive the updated prop value.