{{ index + 1 }}. {{ user.name }}
(First User)
```
## Why Explicit Props?
1. **Clear data flow**: Makes dependencies explicit and traceable
2. **Reusability**: Components work anywhere, not just inside specific v-for loops
3. **Type safety**: Props can be validated with type and required checks
4. **Maintainability**: Easier to understand what data a component needs
## Reference
- [Vue.js List Rendering - v-for with Components](https://vuejs.org/guide/essentials/list.html#v-for-with-a-component)