1👍
if you need that a single element must be clicked at most once this is the best solution.
<!-- the click event will be triggered at most once -->
<a v-on:click.once="doThis"></a>
Source:stackexchange.com
1👍
if you need that a single element must be clicked at most once this is the best solution.
<!-- the click event will be triggered at most once -->
<a v-on:click.once="doThis"></a>