Skip to content

Commit 67760f8

Browse files
committed
fix(setup): ensure setup context slots can be accessed immediately
fix #12672
1 parent ea5d0f3 commit 67760f8

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

src/core/instance/render.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,13 @@ export function initRender(vm: Component) {
2525
const parentVnode = (vm.$vnode = options._parentVnode!) // the placeholder node in parent tree
2626
const renderContext = parentVnode && (parentVnode.context as Component)
2727
vm.$slots = resolveSlots(options._renderChildren, renderContext)
28-
vm.$scopedSlots = emptyObject
28+
vm.$scopedSlots = parentVnode
29+
? normalizeScopedSlots(
30+
vm.$parent!,
31+
parentVnode.data!.scopedSlots,
32+
vm.$slots
33+
)
34+
: emptyObject
2935
// bind the createElement fn to this instance
3036
// so that we get proper render context inside it.
3137
// args order: tag, data, children, normalizationType, alwaysNormalize
@@ -98,7 +104,7 @@ export function renderMixin(Vue: typeof Component) {
98104
const vm: Component = this
99105
const { render, _parentVnode } = vm.$options
100106

101-
if (_parentVnode) {
107+
if (_parentVnode && vm._isMounted) {
102108
vm.$scopedSlots = normalizeScopedSlots(
103109
vm.$parent!,
104110
_parentVnode.data!.scopedSlots,

test/unit/features/v3/apiSetup.spec.ts

+3
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,9 @@ describe('api: setup context', () => {
165165

166166
const Child = {
167167
setup(_props: any, { slots }: any) {
168+
// #12672 behavior consistency with Vue 3: should be able to access
169+
// slots directly in setup()
170+
expect(slots.foo()).toBeTruthy()
168171
return () => h('div', [...slots.foo(), ...slots.bar()])
169172
}
170173
}

0 commit comments

Comments
 (0)