We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67ce99a commit 68069b5Copy full SHA for 68069b5
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