Answer the question
In order to leave comments, you need to log in
Vue-router how to make this.$router.push() to new tab?
Hello!
Is it possible to programmatically go to the desired route so that it opens in a new tab, similarly <a _target="blank" .... />
Answer the question
In order to leave comments, you need to log in
Well, something like this
let routeData = this.$router.resolve({name: 'routeName', query: {data: "someData"}});
window.open(routeData.href, '_blank');
<router-link :to="{ name: 'routeName'}" target="_blank">
Текст
</router-link>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question