Props allow you to pass data from a parent component to a child component.
export default { props: ["title"] }
<MyComponent title="Hello Vue!" /><p>{{ title }}</p>