[Vuejs]-How to print vuetify Data table with pagination

0👍

there are two props required to achieve this,

disable-pagination
hide-default-footer

which are used to remove the pagination from vuetify table,

so the final code would be something like this

<v-data-table
      :headers="headers"
      :items="desserts"
      class="elevation-1"
      disable-pagination
      hide-default-footer

></v-data-table>

Leave a comment