[Vuejs]-How to fire click event on V-btn?

0👍

You probably need to remove the ()

Try this :

<v-btn color="primary" icon :disabled="isDataFlag==1" @click.native="resetForm">
  <v-icon>clear</v-icon>
</v-btn>

and not sure you need .native

Leave a comment