×
×
Correct!
The line below in main.js adds a component to our Vue project:
How can we add this component to App.vue?
<template>
<h1>Fish</h1>
@(25)
</template>
<template>
<h1>Fish</h1>
<fish-type/>
</template>
<template>
<h1>Fish</h1>
<fish-type></fish-type>
</template>
<template>
<h1>Fish</h1>
<fish-type />
</template>
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 54 exercises.
Are you sure you want to continue?