Skip to content

vue/no-use-v-else-with-v-for

disallow using v-else-if/v-else on the same element as v-for

📖 Rule Details

This rule reports elements that have both v-else-if/v-else and v-for directives. That is valid in Vue (v-else-if/v-else will take precedence), but is confusing to read.

Now loading...

🔧 Options

Nothing.

🔇 When Not To Use It

If you don't find using v-else-if/v-else together with v-for confusing to read, you can safely disable this rule.

🚀 Version

This rule was introduced in eslint-plugin-vue v9.16.0

🔍 Implementation