Skip to content

Commit 9313cf9

Browse files
committed
fix: should consider presence of normal slots when caching normalized scoped slots
fix #9644
1 parent da77d6a commit 9313cf9

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export function normalizeScopedSlots (
1111
): any {
1212
let res
1313
const isStable = slots ? !!slots.$stable : true
14+
const hasNormalSlots = Object.keys(normalSlots).length > 0
1415
const key = slots && slots.$key
1516
if (!slots) {
1617
res = {}
@@ -22,7 +23,8 @@ export function normalizeScopedSlots (
2223
prevSlots &&
2324
prevSlots !== emptyObject &&
2425
key === prevSlots.$key &&
25-
Object.keys(normalSlots).length === 0
26+
!hasNormalSlots &&
27+
!prevSlots.$hasNormal
2628
) {
2729
// fast path 2: stable scoped slots w/ no normal slots to proxy,
2830
// only need to normalize once
@@ -48,6 +50,7 @@ export function normalizeScopedSlots (
4850
}
4951
def(res, '$stable', isStable)
5052
def(res, '$key', key)
53+
def(res, '$hasNormal', hasNormalSlots)
5154
return res
5255
}
5356

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

+37
Original file line numberDiff line numberDiff line change
@@ -1227,4 +1227,41 @@ describe('Component scoped slot', () => {
12271227
expect(vm.$el.textContent.trim()).toBe(`2`)
12281228
}).then(done)
12291229
})
1230+
1231+
// #9644
1232+
it('should factor presence of normal slots into scoped slots caching', done => {
1233+
const Wrapper = {
1234+
template: `<div>
1235+
<p>Default:<slot/></p>
1236+
<p>Content:<slot name='content'/></p>
1237+
</div>`
1238+
}
1239+
1240+
const vm = new Vue({
1241+
data: { ok: false },
1242+
components: { Wrapper },
1243+
template: `<wrapper>
1244+
<p v-if='ok'>ok</p>
1245+
<template #content>
1246+
<p v-if='ok'>ok</p>
1247+
</template>
1248+
</wrapper>`
1249+
}).$mount()
1250+
1251+
expect(vm.$el.textContent).not.toMatch(`Default:ok`)
1252+
expect(vm.$el.textContent).not.toMatch(`Content:ok`)
1253+
vm.ok = true
1254+
waitForUpdate(() => {
1255+
expect(vm.$el.textContent).toMatch(`Default:ok`)
1256+
expect(vm.$el.textContent).toMatch(`Content:ok`)
1257+
vm.ok = false
1258+
}).then(() => {
1259+
expect(vm.$el.textContent).not.toMatch(`Default:ok`)
1260+
expect(vm.$el.textContent).not.toMatch(`Content:ok`)
1261+
vm.ok = true
1262+
}).then(() => {
1263+
expect(vm.$el.textContent).toMatch(`Default:ok`)
1264+
expect(vm.$el.textContent).toMatch(`Content:ok`)
1265+
}).then(done)
1266+
})
12301267
})

0 commit comments

Comments
 (0)