[Vuejs]-@click event not firing on nuxt-link in Nuxt 3

1👍

Try to use the prevent modifier and remove :to prop:

<nuxt-link  class="group font-normal" @click.prevent="yourEventHandler" event="">

then use this.$router.push() inside your event handler

Leave a comment