Pattern: Inconsistent v-on
event handler style
Issue: -
This rule aims to enforce a consistent style in v-on event handlers.
<template>
<!-- ✓ GOOD -->
<button v-on:click="handler" />
<!-- ✗ BAD -->
<button v-on:click="handler()" />
<button v-on:click="() => handler()" />
</template>