Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Purely for information: @click.native="doSomething"
.
The .native modifier places the click on the component's root element, not on the component itself. But you should n't do
that with a router-link .
And won't work.
If you need both a transition and an event, make your own handler, for example
<a @click="handleClick">Click Me</a>
methods: {
handleClick () {
console.log('click')
this.$router.push('/daw')
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question