Pattern: Use of deprecated prop
Issue: -
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" />