Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

128
Views
Vue <a @click="manageCookies()"> performs a redirect

I used to have the following code that worked smoothly:

<b-button @click="manageCookies()" variant="link">{{$t('app.cookies')}}</b-button>

A freelancer modified this code when redesigning the site this way:

<a @click="manageCookies()">{{$t('app.cookies')}}</a>

The problem is that I do not see the cookie dialog but the page is reloaded instead. This is the only difference. I suppose that the on click handler shall execute the javascript method, not the reload the page. The workaround is to add dummy href:

<a href="#" @click="manageCookies()">{{$t('app.cookies')}}</a>

Is this a correct way to handle the on click method?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

use prevent click event like this:

<a href="#" @click.prevent="manageCookies()">{{$t('app.cookies')}}</a>

this will prevent reload of page

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!