Сокращённый синтаксис для одиночного слота по умолчанию
<current-user v-slot:default="slotProps">
{{ slotProps.user.firstName }}
</current-user><current-user v-slot="slotProps">
{{ slotProps.user.firstName }}
</current-user><!-- НЕПРАВИЛЬНО, будет выкидывать предупреждение -->
<current-user v-slot="slotProps">
{{ slotProps.user.firstName }}
<template v-slot:other="otherSlotProps">
slotProps НЕДОСТУПНЫ здесь
</template>
</current-user><current-user>
<template v-slot:default="slotProps">
{{ slotProps.user.firstName }}
</template>
<template v-slot:other="otherSlotProps">
...
</template>
</current-user>Last updated