Flag of Ukraine
SymfonyCasts stands united with the people of Ukraine
Next Chapter

Challenge #1 of 2


Q: 

Suppose we have a shiny Title component that looks like this:

<template>
    <div>{{ title }}</div>
</template>

<script>
export default {
    name: 'TitleComponent',
};
</script>

We want other components to be able to pass a title to this component as a prop. Which option would NOT be a valid way to define the title prop?

userVoice