Pattern: Use of removed slot variable
Issue: -
Prevents the use of removed slot variables.
Examples of incorrect code for this rule:
<v-dialog>
<template #activator="{ on }">
<v-btn v-on="on" />
</template>
</v-dialog>
Examples of correct code for this rule:
<v-dialog>
<template #activator="{ props }">
<v-btn v-bind="props" />
</template>
</v-dialog>