vue/no-multiple-slot-args
disallow passing multiple arguments to scoped slots
- ⚙️ This rule is included in all of
"plugin:vue/recommended"
,*.configs["flat/recommended"]
,"plugin:vue/vue2-recommended"
and*.configs["flat/vue2-recommended"]
.
📖 Rule Details
This rule disallows to pass multiple arguments to scoped slots.
In details, it reports call expressions if a call of this.$scopedSlots
members has 2 or more arguments.
<script>
export default {
render(h) {
/* ✓ GOOD */
var children = this.$scopedSlots.default()
var children = this.$scopedSlots.default(foo)
var children = this.$scopedSlots.default({ foo, bar })
/* ✗ BAD */
var children = this.$scopedSlots.default(foo, bar)
var children = this.$scopedSlots.default(...foo)
}
}
</script>
🔧 Options
Nothing.
📚 Further Reading
🚀 Version
This rule was introduced in eslint-plugin-vue v7.0.0