0

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}` });
},
Hasan Parasteh
  • 431
  • 8
  • 25

1 Answers1

1

Sorry for late reply. The question was already posted and you can find in here

scar-2018
  • 510
  • 2
  • 9