Skip to content
On this page

vue/no-dupe-v-else-if

disallow duplicate conditions in v-if / v-else-if chains

  • ⚙️ This rule is included in all of "plugin:vue/vue3-essential", "plugin:vue/essential", "plugin:vue/vue3-strongly-recommended", "plugin:vue/strongly-recommended", "plugin:vue/vue3-recommended" and "plugin:vue/recommended".

📖 Rule Details

This rule disallows duplicate conditions in the same v-if / v-else-if chain.

Now loading...

This rule can also detect some cases where the conditions are not identical, but the branch can never execute due to the logic of || and && operators.

Now loading...

🔧 Options

Nothing.

🚀 Version

This rule was introduced in eslint-plugin-vue v7.0.0

🔍 Implementation