Closed
Description
Vue.js version
2.1.0
Reproduction Link
https://jsfiddle.net/m0pg5a7e/
Steps to reproduce
Check console
What is Expected?
I think it would be nice to have this.$scopedSlots
as empty object (match this.$slots
) if component doesn't have scoped slot. Would be easier to use in an if condition if (this.$scopedSlots.named) {}
instead of if (this.$scopedSlots && this.$scopedSlots.named) {}