vue/v-on-function-call warning
Enforce or forbid parentheses after method calls without arguments in v-on directives
Examples
❌ Incorrect
<template>
    <button @click="closeModal()">
        Close
    </button>
</template>
✅ Correct
<template>
    <button @click="closeModal">
        Close
    </button>
    <button @click="closeModal(arg)">
        Close
    </button>
</template>
