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
123 stars 18 forks source link

Rows don't render when :show-page-size="false" #20

Closed tekord closed 8 months ago

tekord commented 8 months ago

Hi! I have the following code:

      <vue3-datatable
        :rows="rows"
        :columns="columns"
        :show-page-size="false"
        :pagination="false"
      />

rows contains an array of items loaded from server (6 items). Rows don't row when I use :show-page-size="false", no DOM elements in the table's body.

UPD. Weird, sometimes it doesn't render when pagination is off.

bhaveshpatel200 commented 8 months ago

Hi, We have already demos which you describes and its working fine. you can find code from below demo url: https://vue3-datatable-document.vercel.app/alt-pagination

Check Next Previous demo from above url.