Answer the question
In order to leave comments, you need to log in
How to stop following a link in vue.js?
Clicking does not stop the link.
<router-link @click.prevent="" to="/about/">about</router-link>
Answer the question
In order to leave comments, you need to log in
<router-link to="..." @click.native="skip">about</router-link>
const app = new Vue({
router,
methods: {
skip: function(e) {
e.preventDefault()
}
}
})
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question