So, I'm using VueJs 3.2, Vite 3.2.4, Vuetify 3.2.2...
I'm aware of how should I declare the options on DataTable, so the footer and pagination be removed, like this:
<VDataTable
:search="searchQuery"
:headers="headers"
:items="organizations"
disable-pagination
hide-default-footer
class="elevation-1 px-lg-4"
>
At least that's what I found on my last search on Docs and Forums, using disable-pagination and hide-default-footer to achieve the expected result.
But it doesn't work. The table is presented with my data without errors at all, but the Footer/Pagination is still there.
I have even tried to set footer props, that is an old solution:
:footer-props="{ disablePagination : true, disableItemsPerPage : true }"
but nothing works...
Any idea on this guys?