warning
vue/v-on-styleEnforce the shorthand v-on: syntax (@)
Examples
❌ Incorrect
<template>
<my-component v-on:change="updateValue"></my-component>
</template>
✅ Correct
<template>
<my-component @change="updateValue"></my-component>
</template>