bhaveshpatel200 / vue3-datatable

vue3-datatable is a powerful component for creating dynamic and customizable data tables. It supports large amounts of data, sorting, pagination, and filtering and highly customizable
MIT License
100 stars 11 forks source link

NuxtLink with target blank #38

Open Thav0 opened 1 month ago

Thav0 commented 1 month ago

Hi,

When I try to use with target="_blank" the NuxtLink doesn't work

` <vue3-datatable :rows="salesReport" :columns="cols" :loading="loading" :totalRows="paginationParams.totalItems" :isServerMode="true" :pageSize="paginationParams.perPage" :pageSizeOptions="[50, 100, 200, 300]" :currentPage="paginationParams.currentPage" :columnFilter="true" @change="updateSalesReportData" class="text-xs"

<template #id="data">

{{ data.value.id }}

` Only without target="_blank" works, but on this case I want to open a new tab. The NuxtLink outside the vue3-datatable works with the target="_blank". I think there is something wrong inside the component.

bhaveshpatel200 commented 1 month ago

Ok, I will check and updates you.

Thav0 commented 1 week ago

Any new about this issue?