I am working in a Vue.js app with vue router doing a sidebar menu, and I want this behavior:
When clicking on it in the menu render a component and open a new web page in new window.
As far I've tried I only can do one thing or the other.
<v-list-item " target="_blank" :href="'https://google.com'" >
<v-list-item-title>universal</v-list-item-title>
</v-list-item>
and also
<v-list-item " :to="'universal'" >
<v-list-item-title>universal</v-list-item-title>
</v-list-item>
Is there a way to achieve both behaviors? If I place both props it renders the component in a new page.