🔧 This rule is partially fixable with eslint --fix
This rule disallows the use of removed and deprecated components. Grid components are not included in this rule, use no-legacy-grid
instead.
Examples of incorrect code for this rule:
<v-content>
<v-list-tile>
<v-list-tile-title></v-list-tile-title>
</v-list-tile>
</v-content>
<v-jumbotron></v-jumbotron>
Examples of correct code for this rule:
<v-main>
<v-list-item>
<v-list-item-title></v-list-item-title>
</v-list-item>
</v-main>
This rule has no configuration options.