Skip to content

Commit 2277b23

Browse files
committed
fix: scoped slots dynamic check should include v-for on element itself
fix #9596
1 parent 7912f75 commit 2277b23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/codegen/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ function genScopedSlots (
366366
// components with only scoped slots to skip forced updates from parent.
367367
// but in some cases we have to bail-out of this optimization
368368
// for example if the slot contains dynamic names, has v-if or v-for on them...
369-
let needsForceUpdate = Object.keys(slots).some(key => {
369+
let needsForceUpdate = el.for || Object.keys(slots).some(key => {
370370
const slot = slots[key]
371371
return (
372372
slot.slotTargetDynamic ||

0 commit comments

Comments
 (0)