Reputation: 5811
According to this Nuxt 2
stack question this should prevent nuxt-link
from navigating to a new page:
<nuxt-link :to="`/meet`" class="group font-normal" @click.native="event => event.preventDefault()" event="">
but it doesn't. The function inside @click
is not executed and nuxt navigates to /meet
url.
Any idea how to execute @click
events on a nuxt 3 link
?
Upvotes: 0
Views: 2092
Reputation: 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
Upvotes: 1