Skip to content

Commit 8a80086

Browse files
committed
fix: new syntax slots without scope should also be exposed on functional slots()
1 parent 099f3ba commit 8a80086

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

src/core/vdom/create-functional-component.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,15 @@ export function FunctionalRenderContext (
4949
this.parent = parent
5050
this.listeners = data.on || emptyObject
5151
this.injections = resolveInject(options.inject, parent)
52-
this.slots = () => this.$slots || (this.$slots = resolveSlots(children, parent))
52+
this.slots = () => {
53+
if (!this.$slots) {
54+
normalizeScopedSlots(
55+
data.scopedSlots,
56+
this.$slots = resolveSlots(children, parent)
57+
)
58+
}
59+
return this.$slots
60+
}
5361

5462
Object.defineProperty(this, 'scopedSlots', ({
5563
enumerable: true,

test/unit/features/component/component-scoped-slot.spec.js

+15
Original file line numberDiff line numberDiff line change
@@ -1088,4 +1088,19 @@ describe('Component scoped slot', () => {
10881088
}).$mount()
10891089
expect(vm.$el.textContent).toBe('')
10901090
})
1091+
1092+
it('should expose v-slot without scope on ctx.slots() in functional', () => {
1093+
const vm = new Vue({
1094+
template: `<foo><template v-slot>hello</template></foo>`,
1095+
components: {
1096+
foo: {
1097+
functional: true,
1098+
render(h, ctx) {
1099+
return h('div', ctx.slots().default)
1100+
}
1101+
}
1102+
}
1103+
}).$mount()
1104+
expect(vm.$el.textContent).toBe('hello')
1105+
})
10911106
})

0 commit comments

Comments
 (0)