[Vuejs]-How to make onclick event to work only once in vue.js

5👍

Use the .once event modifier to handle the event only once:

<input @click.once="start">

demo

👤tony19

-2👍

We can add prevent modifier to events
It is equivalent of Event.preventDefault() in javascript.

 <input
     type="submit"
     value="Start"
     name="start_button"
     @click.prevent="start"
 />

Leave a comment