Skip to content

Commit 7ec4627

Browse files
committed
fix: ensure generated scoped slot code is compatible with 2.5
fix #9545
1 parent d9b27a9 commit 7ec4627

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

src/compiler/codegen/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -409,9 +409,9 @@ function genScopedSlots (
409409
.join(',')
410410

411411
return `scopedSlots:_u([${generatedSlots}]${
412-
needsForceUpdate ? `,true` : ``
412+
needsForceUpdate ? `,null,true` : ``
413413
}${
414-
!needsForceUpdate && needsKey ? `,false,${hash(generatedSlots)}` : ``
414+
!needsForceUpdate && needsKey ? `,null,false,${hash(generatedSlots)}` : ``
415415
})`
416416
}
417417

src/core/instance/render-helpers/resolve-scoped-slots.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22

33
export function resolveScopedSlots (
44
fns: ScopedSlotsData, // see flow/vnode
5-
hasDynamicKeys: boolean,
6-
contentHashKey: number,
7-
res?: Object
5+
res?: Object,
6+
// the following are added in 2.6
7+
hasDynamicKeys?: boolean,
8+
contentHashKey?: number
89
): { [key: string]: Function, $stable: boolean } {
910
res = res || { $stable: !hasDynamicKeys }
1011
for (let i = 0; i < fns.length; i++) {
1112
const slot = fns[i]
1213
if (Array.isArray(slot)) {
13-
resolveScopedSlots(slot, hasDynamicKeys, null, res)
14+
resolveScopedSlots(slot, res, hasDynamicKeys)
1415
} else if (slot) {
1516
// marker for reverse proxying v-slot without scope on this.$slots
1617
if (slot.proxy) {
@@ -20,7 +21,7 @@ export function resolveScopedSlots (
2021
}
2122
}
2223
if (contentHashKey) {
23-
res.$key = contentHashKey
24+
(res: any).$key = contentHashKey
2425
}
2526
return res
2627
}

test/unit/modules/compiler/codegen.spec.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -232,25 +232,25 @@ describe('codegen', () => {
232232
it('generate dynamic scoped slot', () => {
233233
assertCodegen(
234234
'<foo><template :slot="foo" slot-scope="bar">{{ bar }}</template></foo>',
235-
`with(this){return _c('foo',{scopedSlots:_u([{key:foo,fn:function(bar){return [_v(_s(bar))]}}],true)})}`
235+
`with(this){return _c('foo',{scopedSlots:_u([{key:foo,fn:function(bar){return [_v(_s(bar))]}}],null,true)})}`
236236
)
237237
})
238238

239239
it('generate scoped slot with multiline v-if', () => {
240240
assertCodegen(
241241
'<foo><template v-if="\nshow\n" slot-scope="bar">{{ bar }}</template></foo>',
242-
`with(this){return _c('foo',{scopedSlots:_u([{key:"default",fn:function(bar){return (\nshow\n)?[_v(_s(bar))]:undefined}}],true)})}`
242+
`with(this){return _c('foo',{scopedSlots:_u([{key:"default",fn:function(bar){return (\nshow\n)?[_v(_s(bar))]:undefined}}],null,true)})}`
243243
)
244244
assertCodegen(
245245
'<foo><div v-if="\nshow\n" slot="foo" slot-scope="bar">{{ bar }}</div></foo>',
246-
`with(this){return _c(\'foo\',{scopedSlots:_u([{key:"foo",fn:function(bar){return (\nshow\n)?_c(\'div\',{},[_v(_s(bar))]):_e()}}],true)})}`
246+
`with(this){return _c(\'foo\',{scopedSlots:_u([{key:"foo",fn:function(bar){return (\nshow\n)?_c(\'div\',{},[_v(_s(bar))]):_e()}}],null,true)})}`
247247
)
248248
})
249249

250250
it('generate scoped slot with new slot syntax', () => {
251251
assertCodegen(
252252
'<foo><template v-if="show" #default="bar">{{ bar }}</template></foo>',
253-
`with(this){return _c('foo',{scopedSlots:_u([(show)?{key:"default",fn:function(bar){return [_v(_s(bar))]}}:null],true)})}`
253+
`with(this){return _c('foo',{scopedSlots:_u([(show)?{key:"default",fn:function(bar){return [_v(_s(bar))]}}:null],null,true)})}`
254254
)
255255
})
256256

0 commit comments

Comments
 (0)