We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbeed5b commit a2f811fCopy full SHA for a2f811f
src/guide/component-slots.md
@@ -308,10 +308,9 @@ Note that the abbreviated syntax for default slot **cannot** be mixed with named
308
```html
309
<!-- INVALID, will result in warning -->
310
<todo-list v-slot="slotProps">
311
- <todo-list v-slot:default="slotProps">
312
- <i class="fas fa-check"></i>
313
- <span class="green">{{ slotProps.item }}</span>
314
- </todo-list>
+ <i class="fas fa-check"></i>
+ <span class="green">{{ slotProps.item }}</span>
+
315
<template v-slot:other="otherSlotProps">
316
slotProps is NOT available here
317
</template>
0 commit comments