Appearance
vue/valid-v-memo
强制有效的
v-memo
指令
- ⚙️ 此规则包含在
"plugin:vue/essential"
、*.configs["flat/essential"]
、"plugin:vue/strongly-recommended"
、*.configs["flat/strongly-recommended"]
、"plugin:vue/recommended"
和*.configs["flat/recommended"]
中。
此规则检查每个 v-memo
指令是否有效。
¥This rule checks whether every v-memo
directive is valid.
📖 规则详情
此规则在以下情况下报告 v-memo
指令:
¥This rule reports v-memo
directives in the following cases:
该指令有该参数。例如
<div v-memo:aaa></div>
¥The directive has that argument. E.g.
<div v-memo:aaa></div>
该指令具有该修饰符。例如
<div v-memo.bbb></div>
¥The directive has that modifier. E.g.
<div v-memo.bbb></div>
该指令没有该属性值。例如
<div v-memo></div>
¥The directive does not have that attribute value. E.g.
<div v-memo></div>
指令的属性值肯定不是数组。例如
<div v-memo="{x}"></div>
¥The attribute value of the directive is definitely not array. E.g.
<div v-memo="{x}"></div>
该指令在 v-for 内部使用。例如
<div v-for="i in items"><div v-memo="[i]" /></div>
¥The directive was used inside v-for. E.g.
<div v-for="i in items"><div v-memo="[i]" /></div>
注意
此规则不检查指令中的语法错误,因为它由 vue/no-parsing-error 规则检查。
¥This rule does not check syntax errors in directives because it's checked by vue/no-parsing-error rule.
🔧选项
¥🔧 Options
无。
¥Nothing.
👫相关规则
¥👫 Related Rules
📚扩展阅读
¥📚 Further Reading
🚀版本
¥🚀 Version
此规则在 eslint-plugin-vue v7.16.0 中引入
¥This rule was introduced in eslint-plugin-vue v7.16.0
🔍代码实现
¥🔍 Implementation