vuejs / eslint-plugin-vue

Official ESLint plugin for Vue.js
https://eslint.vuejs.org/
MIT License
4.47k stars 666 forks source link

fix(no-deprecated-slot-attribute): handle v-for with dynamic slot #2529

Closed privatenumber closed 2 months ago

privatenumber commented 3 months ago

Fixes an edge-case where the slot is dynamic derived from a v-for.

Previously, it would move the slot directive in a new <template> above the v-for, which broke it.

Now, it also moves the v-for to the new <template>.