warning
vue/v-on-function-callEnforce 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>