Skip to content

Commit 44a4ca3

Browse files
committed
fix: restore slot-scope + v-if behavior
fix #9422
1 parent 0129b0e commit 44a4ca3

File tree

3 files changed

+33
-4
lines changed

3 files changed

+33
-4
lines changed

src/compiler/codegen/index.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -375,15 +375,18 @@ function genScopedSlot (
375375
el: ASTElement,
376376
state: CodegenState
377377
): string {
378-
if (el.if && !el.ifProcessed) {
378+
const isLegacySyntax = el.attrsMap['slot-scope']
379+
if (el.if && !el.ifProcessed && !isLegacySyntax) {
379380
return genIf(el, state, genScopedSlot, `null`)
380381
}
381382
if (el.for && !el.forProcessed) {
382383
return genFor(el, state, genScopedSlot)
383384
}
384385
const fn = `function(${String(el.slotScope)}){` +
385386
`return ${el.tag === 'template'
386-
? genChildren(el, state) || 'undefined'
387+
? el.if && isLegacySyntax
388+
? `(${el.if})?${genChildren(el, state) || 'undefined'}:undefined`
389+
: genChildren(el, state) || 'undefined'
387390
: genElement(el, state)
388391
}}`
389392
return `{key:${el.slotTarget || `"default"`},fn:${fn}}`

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

+19
Original file line numberDiff line numberDiff line change
@@ -650,6 +650,25 @@ describe('Component scoped slot', () => {
650650
}).then(done)
651651
})
652652

653+
// #9422
654+
// the behavior of the new syntax is slightly different.
655+
it('scoped slot v-if using slot-scope value', () => {
656+
const Child = {
657+
template: '<div><slot value="foo"/></div>',
658+
}
659+
const vm = new Vue({
660+
components: { Child },
661+
template: `
662+
<child>
663+
<template slot-scope="{ value }" v-if="value">
664+
foo {{ value }}
665+
</template>
666+
</child>
667+
`
668+
}).$mount()
669+
expect(vm.$el.textContent).toMatch(`foo foo`)
670+
})
671+
653672
// 2.6 new slot syntax
654673
describe('v-slot syntax', () => {
655674
const Foo = {

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

+9-2
Original file line numberDiff line numberDiff line change
@@ -239,11 +239,18 @@ describe('codegen', () => {
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([(\nshow\n)?{key:"default",fn:function(bar){return [_v(_s(bar))]}}:null],true)})}`
242+
`with(this){return _c('foo',{scopedSlots:_u([{key:"default",fn:function(bar){return (\nshow\n)?[_v(_s(bar))]:undefined}}],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([(\nshow\n)?{key:"foo",fn:function(bar){return _c(\'div\',{},[_v(_s(bar))])}}:null],true)})}`
246+
`with(this){return _c(\'foo\',{scopedSlots:_u([{key:"foo",fn:function(bar){return (\nshow\n)?_c(\'div\',{},[_v(_s(bar))]):_e()}}],true)})}`
247+
)
248+
})
249+
250+
it('generate scoped slot with new slot syntax', () => {
251+
assertCodegen(
252+
'<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)})}`
247254
)
248255
})
249256

0 commit comments

Comments
 (0)