Menu
×
×
Correct!
Exercise:How can we make the 'comp-one' component available locally, only to one component?
<script>
@(6) CompOne from './components/CompOne.vue';
export default {
@(10): {
'comp-one': @(7)
}
}
</script>
<script>
import CompOne from './components/CompOne.vue';
export default {
components: {
'comp-one': CompOne
}
}
</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?