Skip to content

Files

Latest commit

 

History

History
27 lines (18 loc) · 605 Bytes

no-deprecated-props.md

File metadata and controls

27 lines (18 loc) · 605 Bytes

Pattern: Use of deprecated prop

Issue: -

Description

Disallows the use of removed and deprecated props.

Examples of incorrect code for this rule:

<v-btn outline round />
<v-carousel hide-controls />
<v-toolbar app manual-scroll />

Examples of correct code for this rule:

<v-btn outlined rounded />
<v-carousel :show-arrows="false" />
<v-app-bar app :value="false" />

Further Reading