Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 553 Bytes

no-deprecated-events.md

File metadata and controls

25 lines (16 loc) · 553 Bytes

Disallow the use of events that have been removed from Vuetify (no-deprecated-events)

🔧 This rule is partially fixable with eslint --fix

Rule Details

This rule disallows the use of removed and deprecated events.

Examples of incorrect code for this rule:

<v-text-field @input="onInput" />
<v-btn @change="onSelected" />

Examples of correct code for this rule:

<v-text-field @update:model-value="onInput" />
<v-btn @group:selected="onSelected" />

Options

This rule has no configuration options.