We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7912f75 commit 2277b23Copy full SHA for 2277b23
src/compiler/codegen/index.js
@@ -366,7 +366,7 @@ function genScopedSlots (
366
// components with only scoped slots to skip forced updates from parent.
367
// but in some cases we have to bail-out of this optimization
368
// for example if the slot contains dynamic names, has v-if or v-for on them...
369
- let needsForceUpdate = Object.keys(slots).some(key => {
+ let needsForceUpdate = el.for || Object.keys(slots).some(key => {
370
const slot = slots[key]
371
return (
372
slot.slotTargetDynamic ||
0 commit comments