Appearance
vue/no-negated-v-if-condition
v-if/v-else 中禁止使用否定条件
- 💡 此规则报告的某些问题可由编辑器 suggestions 手动修复。
📖 规则详情
此规则不允许在包含 v-else
分支的 v-if
和 v-else-if
指令中使用否定条件。
¥This rule disallows negated conditions in v-if
and v-else-if
directives which have an v-else
branch.
否定条件会降低代码的可读性。当存在 else
子句时,最好使用肯定条件并切换分支。
¥Negated conditions make the code less readable. When there's an else
clause, it's better to use a positive condition and switch the branches.
🔧选项
¥🔧 Options
无。
¥Nothing.
👫相关规则
¥👫 Related Rules
🚀版本
¥🚀 Version
此规则在 eslint-plugin-vue v10.4.0 中引入
¥This rule was introduced in eslint-plugin-vue v10.4.0
🔍代码实现
¥🔍 Implementation