Back
Choose Your Topic
New Interview Question
How do you pass data to a child component?
Data is passed to a child component using props. Example: <child-component :message="parentMessage"></child-component>, where message is a prop defined in the child.
<child-component :message="parentMessage"></child-component>
message