Skip to content

Files

Latest commit

 

History

History
33 lines (23 loc) · 722 Bytes

no-deprecated-components.md

File metadata and controls

33 lines (23 loc) · 722 Bytes

Pattern: Use of deprecated component

Issue: -

Description

Disallows the use of removed and deprecated components. Grid components are not included in this rule, use no-legacy-grid instead.

Example of incorrect code:

<v-content>
  <v-list-tile>
    <v-list-tile-title></v-list-tile-title>
  </v-list-tile>
</v-content>

<v-jumbotron></v-jumbotron>

Example of correct code:

<v-main>
  <v-list-item>
    <v-list-item-title></v-list-item-title>
  </v-list-item>
</v-main>

Further Reading