[Vuejs]-@input to enter new items only on click of a button

0👍

Replace @input which is triggered every time the input value changes by @change which is only triggered once you leave the input (blur)

Leave a comment