Appearance
vue/valid-v-pre
强制有效的
v-pre
指令
- ⚙️ 此规则包含在
"plugin:vue/essential"
、*.configs["flat/essential"]
、"plugin:vue/vue2-essential"
、*.configs["flat/vue2-essential"]
、"plugin:vue/strongly-recommended"
、*.configs["flat/strongly-recommended"]
、"plugin:vue/vue2-strongly-recommended"
、*.configs["flat/vue2-strongly-recommended"]
、"plugin:vue/recommended"
、*.configs["flat/recommended"]
、"plugin:vue/vue2-recommended"
和*.configs["flat/vue2-recommended"]
中。
此规则检查每个 v-pre
指令是否有效。
¥This rule checks whether every v-pre
directive is valid.
📖 规则详情
此规则在以下情况下报告 v-pre
指令:
¥This rule reports v-pre
directives in the following cases:
该指令有该参数。例如
<div v-pre:aaa></div>
¥The directive has that argument. E.g.
<div v-pre:aaa></div>
该指令具有该修饰符。例如
<div v-pre.bbb></div>
¥The directive has that modifier. E.g.
<div v-pre.bbb></div>
该指令有该属性值。例如
<div v-pre="ccc"></div>
¥The directive has that attribute value. E.g.
<div v-pre="ccc"></div>
🔧选项
¥🔧 Options
无。
¥Nothing.
🚀版本
¥🚀 Version
此规则在 eslint-plugin-vue v3.11.0 中引入
¥This rule was introduced in eslint-plugin-vue v3.11.0
🔍代码实现
¥🔍 Implementation