When defining table header
columnName: "fieldName",
columnLabel: "Invoice",
<template v-for="(properties, j) in header" :key="j">
<td
class="text-nowrap"
:class="{ "text-end": j === header.length - 1 }"
>
<slot :name="`${properties.columnLabel}`" :row="row">
{{ row[prop] }}
</slot>
</td>
</template>
Hi,
We already know about this issue, and the fix will be available in the next release.
To disable pagination you can set itemsPerPage
to the length of your data.
:itemsPerPage="tableData.length"