Is it possible to turn off the prev-icon
in the footer section of the v-data-table
similar to how it is achieved on the initial page?
I attempted to configure the footer-props
as follows:
footerProps: {
'prev-icon': null,
},
While this successfully hides the icon, the button remains functional on pages beyond the first one.
Naturally, I could utilize CSS to hide the button, but I prefer using vuetify for handling such cases.
Appreciate your help in advance