79536002

Date: 2025-03-26 09:59:27
Score: 1.5
Natty:
Report link

In Nuxt 3 you can try to add capture modifier to your click handler and then use event.preventDefault()

<nuxt-link  class="group font-normal" @click.capture="yourEventHandler" />


function yourEventHandler(event) {
  event.preventDefault()

 // your logic
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: s33k3r