-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
Description
Version
2.5.16
Reproduction link
https://jsfiddle.net/50wL7mdz/323954/
Steps to reproduce
- Create a component that uses a render function to return some parent element with
this.$scopedSlots.default({})
as the children. - Create an instance of that component that passes multiple elements to the scoped slot and see
this.$scopedSlots.default({})
return an array. - Create an instance of that component that passes a single element to the scoped slot and see
this.$scopedSlots.default({})
return a VNode, not an array with a single VNode in it.
What is expected?
this.$scopedSlots.default({})
should always return an array of VNodes, even if there's only one VNode in the array.
This is how this.$slots.default
behaves.
What is actually happening?
this.$scopedSlots.default({})
returns mixed types: an array when there are multiple elements in the slot, or a direct VNode instance if there is only a single child.
This is inconsistent with how regular slots behave in render functions, and means any render function component rendering scoped slots as children needs to type check the result of invoking the slot to decide if it needs to be wrapped in an array:
render(h) {
const children = this.$scopedSlots.default({})
return h('div', {}, Array.isArray(children) ? children : [children])
}
Contrast that with regular slots where it is always safe to pass the slot as a child because it is always an array:
render(h) {
return h('div', {}, this.$slots.default)
}
It's a bummer because although this is pretty easy to classify as a bug, it would be a breaking change for a lot of people using scoped slots to write components that use the default scoped slot as their root element:
render() {
return this.$scopedSlots.default({ someDataThisComponentIsResponsibleFor })
}
If this bug were fixed, anyone with a component like that would need to re-write it like this:
render() {
return this.$scopedSlots.default({ someDataThisComponentIsResponsibleFor })[0]
}
If this isn't a bug and is by design, I'd love to better understand the reasoning!