In Vue 3, how does a parent component pass data down to a child component?
- aBy calling a method exposed by the child
- bBy binding a prop on the child's tag, e.g.
<Child :title="value" />✓ - cBy importing the child's internal state directly
- dBy mutating a shared global variable
Explanation:Props are the standard one-way data-passing mechanism from parent to child in Vue: the parent binds a value to an attribute on the child's tag, and the child declares that name in its
props option (or defineProps) to receive it.