Skip to content

Commit 060686d

Browse files
committed
fix: do not cache scoped slots when mixed with normal slots
1 parent 0bad7e2 commit 060686d

File tree

2 files changed

+33
-2
lines changed

2 files changed

+33
-2
lines changed

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

+8-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,14 @@ export function normalizeScopedSlots (
1515
} else if (slots._normalized) {
1616
// fast path 1: child component re-render only, parent did not change
1717
return slots._normalized
18-
} else if (slots.$stable && prevSlots && prevSlots !== emptyObject) {
19-
// fast path 2: stable scoped slots, only need to normalize once
18+
} else if (
19+
slots.$stable &&
20+
prevSlots &&
21+
prevSlots !== emptyObject &&
22+
Object.keys(normalSlots).length === 0
23+
) {
24+
// fast path 2: stable scoped slots w/ no normal slots to proxy,
25+
// only need to normalize once
2026
return prevSlots
2127
} else {
2228
res = {}

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

+25
Original file line numberDiff line numberDiff line change
@@ -1103,4 +1103,29 @@ describe('Component scoped slot', () => {
11031103
}).$mount()
11041104
expect(vm.$el.textContent).toBe('hello')
11051105
})
1106+
1107+
it('should not cache scoped slot normalzation when there are a mix of normal and scoped slots', done => {
1108+
const foo = {
1109+
template: `<div><slot name="foo" /> <slot name="bar" /></div>`
1110+
}
1111+
1112+
const vm = new Vue({
1113+
data: {
1114+
msg: 'foo'
1115+
},
1116+
template: `
1117+
<foo>
1118+
<div slot="foo">{{ msg }}</div>
1119+
<template #bar><div>bar</div></template>
1120+
</foo>
1121+
`,
1122+
components: { foo }
1123+
}).$mount()
1124+
1125+
expect(vm.$el.textContent).toBe(`foo bar`)
1126+
vm.msg = 'baz'
1127+
waitForUpdate(() => {
1128+
expect(vm.$el.textContent).toBe(`baz bar`)
1129+
}).then(done)
1130+
})
11061131
})

0 commit comments

Comments
 (0)