I'm currently using vuetify and I need to make each row act as a tag and make sure it's opens in new tab.
My table looks like this:
<v-data-table
        :headers="headers"
        :items="campaigns"
        calculate-widths
        :loading="loading"
        :search="search"
        :items-per-page="15"
        @click:row="showCampaignReport"
      >
</v-data-table>
I'm using @click:row="showCampaignReport" now and it works fine but the problem is that there is no open link in new tab in browser context menu...
showCampaignReport(value) {
    this.$router.push({ path: `/campaigns/${value.hash}` });
},
 
    