Commits
Click on a commit to change the comparison rangefeat(linter): add `vue/no-multiple-slot-args` rule (#13579)
related #11440
https://eslint.vuejs.org/rules/no-multiple-slot-args.html
The original rule starts from a `MemberExpression` and checks later if the parent is a `CallExpression`.
This implementation checks for a `CallExpression` and tries to check `MemberExpression`.
All 22 tests are getting diagnosed, even the weird use case:
```
let children
children = this.$scopedSlots.foo
if (children) children(...foo)
```