src/content/docs/linter/rules/no-vue-v-if-with-v-for.mdx
import { Tabs, TabItem } from '@astrojs/starlight/components';
<Tabs> <TabItem label="HTML" icon="seti:html"> :::caution This rule is part of the [nursery](/linter/#nursery) group. This means that it is experimental and the behavior can change at any time. ::: ## Summary - Rule available since: `v2.3.6` - Diagnostic Category: [`lint/nursery/noVueVIfWithVFor`](/reference/diagnostics#diagnostic-category) - This rule doesn't have a fix. - The default severity of this rule is [**information**](/reference/diagnostics#information). - This rule belongs to the following domains: - [`vue`](/linter/domains#vue) - Sources: - Same as [`vue/no-use-v-if-with-v-for`](https://eslint.vuejs.org/rules/no-use-v-if-with-v-for){
"linter": {
"rules": {
"nursery": {
"noVueVIfWithVFor": "error"
}
}
}
}
Disallow using v-if and v-for directives on the same element.
There are two common cases where this can be tempting:
v-for="user in users" v-if="user.isActive"). In these cases, replace users with a new computed property that returns your filtered list (e.g. activeUsers).v-for="user in users" v-if="shouldShowUsers"). In these cases, move the v-if to a container element.<TodoItem
v-if="complete"
v-for="todo in todos"
:todo="todo"
/>
<ul v-if="complete">
<TodoItem
v-for="todo in todos"
:todo="todo"
/>
</ul>