File tree 2 files changed +44
-2
lines changed
test/unit/features/component
2 files changed +44
-2
lines changed Original file line number Diff line number Diff line change @@ -368,7 +368,12 @@ function genScopedSlots (
368
368
// for example if the slot contains dynamic names, has v-if or v-for on them...
369
369
let needsForceUpdate = Object . keys ( slots ) . some ( key => {
370
370
const slot = slots [ key ]
371
- return slot . slotTargetDynamic || slot . if || slot . for
371
+ return (
372
+ slot . slotTargetDynamic ||
373
+ slot . if ||
374
+ slot . for ||
375
+ containsSlotChild ( slot ) // is passing down slot from parent which may be dynamic
376
+ )
372
377
} )
373
378
// OR when it is inside another scoped slot (the reactivity is disconnected)
374
379
// #9438
@@ -390,6 +395,16 @@ function genScopedSlots (
390
395
} ]${ needsForceUpdate ? `,true` : `` } )`
391
396
}
392
397
398
+ function containsSlotChild ( el : ASTNode ) : boolean {
399
+ if ( el . type === 1 ) {
400
+ if ( el . tag === 'slot' ) {
401
+ return true
402
+ }
403
+ return el . children . some ( containsSlotChild )
404
+ }
405
+ return false
406
+ }
407
+
393
408
function genScopedSlot (
394
409
el : ASTElement ,
395
410
state : CodegenState
Original file line number Diff line number Diff line change @@ -1104,7 +1104,7 @@ describe('Component scoped slot', () => {
1104
1104
expect ( vm . $el . textContent ) . toBe ( 'hello' )
1105
1105
} )
1106
1106
1107
- it ( 'should not cache scoped slot normalzation when there are a mix of normal and scoped slots' , done => {
1107
+ it ( 'should not cache scoped slot normalization when there are a mix of normal and scoped slots' , done => {
1108
1108
const foo = {
1109
1109
template : `<div><slot name="foo" /> <slot name="bar" /></div>`
1110
1110
}
@@ -1144,4 +1144,31 @@ describe('Component scoped slot', () => {
1144
1144
1145
1145
expect ( vm . $el . textContent ) . toBe ( 'foo bar' )
1146
1146
} )
1147
+
1148
+ it ( 'should not skip updates when a scoped slot contains parent <slot/> content' , done => {
1149
+ const inner = {
1150
+ template : `<div><slot/></div>`
1151
+ }
1152
+
1153
+ const wrapper = {
1154
+ template : `<inner v-slot><slot/></inner>` ,
1155
+ components : { inner }
1156
+ }
1157
+
1158
+ const vm = new Vue ( {
1159
+ data ( ) {
1160
+ return {
1161
+ ok : true
1162
+ }
1163
+ } ,
1164
+ components : { wrapper } ,
1165
+ template : `<wrapper><div>{{ ok ? 'foo' : 'bar' }}</div></wrapper>`
1166
+ } ) . $mount ( )
1167
+
1168
+ expect ( vm . $el . textContent ) . toBe ( 'foo' )
1169
+ vm . ok = false
1170
+ waitForUpdate ( ( ) => {
1171
+ expect ( vm . $el . textContent ) . toBe ( 'bar' )
1172
+ } ) . then ( done )
1173
+ } )
1147
1174
} )
You can’t perform that action at this time.
0 commit comments