---
title: Forward Slots to Child Components Correctly
impact: MEDIUM
impactDescription: Wrapper components that don't forward slots break slot functionality for consumers
type: best-practice
tags: [vue3, slots, component-composition, wrapper-components, slot-forwarding]
---
# Forward Slots to Child Components Correctly
**Impact: MEDIUM** - When creating wrapper components that enhance or extend other components, you need to forward slots from the parent to the wrapped child. Without proper slot forwarding, consumers of your wrapper cannot customize the inner component's slots.
## Task Checklist
- [ ] Use `v-for` with `$slots` to iterate over all provided slots
- [ ] Use dynamic slot names with `v-slot:[slotName]`
- [ ] Pass slot props through with `v-bind="slotProps"`
- [ ] Handle cases where slotProps might be undefined
**Basic Slot Forwarding Pattern:**
```vue
```
**Usage:**
```vue
Click me
```
## Handling Scoped Slots
When the child component provides slot props, you must forward them:
```vue
```
```vue
| {{ index + 1 }} |
{{ item.name }} |
```
## Alternative: Handling Undefined slotProps
Some scenarios require checking if slotProps exists:
```vue
```
## Forwarding Specific Slots Only
If you only want to forward certain slots:
```vue
```
## Common Mistakes
| Mistake | Problem | Solution |
|---------|---------|----------|
| Not using `v-bind="slotProps"` | Scoped slot data lost | Always bind slotProps |
| Forgetting `?? {}` or null check | Error when slotProps undefined | Add nullish coalescing |
| Static slot names in loop | Only forwards one slot | Use `v-slot:[slotName]` dynamic syntax |
| Missing `v-for` key warning | Vue warning (non-critical) | Keys not needed for slot functions |
## Reference
- [Vue Land FAQ - Forwarding Slots](https://vue-land.github.io/faq/forwarding-slots)
- [Vue.js Slots - Scoped Slots](https://vuejs.org/guide/components/slots.html#scoped-slots)