Skip to content

Commit c264335

Browse files
committed
feat: feat: add warning for ambiguous combined usage of slot-scope and v-for
close #6817
1 parent 4c22d1d commit c264335

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/compiler/parser/index.js

+9
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,15 @@ function processSlot (el) {
460460
}
461461
el.slotScope = slotScope || getAndRemoveAttr(el, 'slot-scope')
462462
} else if ((slotScope = getAndRemoveAttr(el, 'slot-scope'))) {
463+
/* istanbul ignore if */
464+
if (process.env.NODE_ENV !== 'production' && el.attrsMap['v-for']) {
465+
warn(
466+
`Ambiguous combined usage of slot-scope and v-for on <${el.tag}> ` +
467+
`(v-for takes higher priority). Use a wrapper <template> for the ` +
468+
`scoped slot to make it clearer.`,
469+
true
470+
)
471+
}
463472
el.slotScope = slotScope
464473
}
465474
const slotTarget = getBindingAttr(el, 'slot')

0 commit comments

Comments
 (0)