🔧 This rule is partially fixable with eslint --fix
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" />
This rule has no configuration options.