Menu
×
×
Correct!
Exercise:The 'fishName' data property is provided from App.vue so that it is available in this component. How can we inject the 'fishName' in this component?
<script>
export default {
inject: @(14)
}
</script>
<script>
export default {
inject: ['fishName']
}
</script>
<script>
export default {
inject: ["fishName"]
}
</script>
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 54 exercises.
Are you sure you want to continue?