Menu
×
×
Correct!
Exercise:When a text is provided between the start tag and end tag of a component like this:
The text provided can be received in the component using slots, like this:
<template>
<div>
<p>CompOne.vue</p>
<slot></slot>
</div>
</template>
<template>
<div>
<p>CompOne.vue</p>
<slot/>
</div>
</template>
<template>
<div>
<p>CompOne.vue</p>
<slot />
</div>
</template>
Not CorrectClick here to try again. Correct!Next ❯<template> <div> <p>CompOne.vue</p></div> </template> |