Skip to content

Commit 57bc80a

Browse files
committed
fix: empty scoped slot should return undefined
fix #9452
1 parent 4015deb commit 57bc80a

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

src/core/vdom/helpers/normalize-scoped-slots.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,13 @@ export function normalizeScopedSlots (
3333

3434
function normalizeScopedSlot(fn: Function): Function {
3535
return scope => {
36-
const res = fn(scope)
37-
return res && typeof res === 'object' && !Array.isArray(res)
36+
let res = fn(scope)
37+
res = res && typeof res === 'object' && !Array.isArray(res)
3838
? [res] // single vnode
3939
: normalizeChildren(res)
40+
return res && res.length === 0
41+
? undefined
42+
: res
4043
}
4144
}
4245

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

+25
Original file line numberDiff line numberDiff line change
@@ -1034,4 +1034,29 @@ describe('Component scoped slot', () => {
10341034
expect(vm.$el.textContent).toBe(JSON.stringify({ changed: 'hello' }, null, 2))
10351035
}).then(done)
10361036
})
1037+
1038+
// #9452
1039+
it('fallback for scoped slots passed multiple levels down', () => {
1040+
const inner = {
1041+
template: `<div><slot>fallback</slot></div>`
1042+
}
1043+
1044+
const wrapper = {
1045+
template: `
1046+
<inner>
1047+
<template #default>
1048+
<slot/>
1049+
</template>
1050+
</inner>
1051+
`,
1052+
components: { inner }
1053+
}
1054+
1055+
const vm = new Vue({
1056+
components: { wrapper, inner },
1057+
template: `<wrapper/>`
1058+
}).$mount()
1059+
1060+
expect(vm.$el.textContent).toBe(`fallback`)
1061+
})
10371062
})

0 commit comments

Comments
 (0)