When I use router link without a tag I can ctrl+click this link to open up the link in a new tab. When used with a tag. For example tag="td" ctrl+click does not work anymore. The same goes for click-able elements produced with @click.prevent
<router-link :to="`/contracts/${row.id}`">
{{ row.type | initials }}
</router-link>
This works with ctrl+click
<router-link tag="td" :to="`/contracts/${row.id}`">
{{ row.type | initials }}
</router-link>
<td @click.prevent="someAction()">
{{ row.type | initials }}
</router-link>
This does not work.
What causes this behavior and what can be done about it?
