0 votes
in VueJS by
edited by
Which of the following event modifier should we use to perform the click event only for the one time?

a) <a @:click.passive="dotask"></a>

b) <a @:click.once="dotask"></a>

c) <a @:click.prevent-once="dotask"></a>

d) <a @:click.prevent-once="dotask"></a>

1 Answer

0 votes
by

b) <a @:click.once="dotask"></a> event modifier should we use to perform the click event only for the one time

Related questions

0 votes
0 votes
asked Apr 13, 2022 in VueJS by john ganales
...