DEV Community

Discussion on: Vuetify Datatable, vuex and Laravel pagination (Updated)

Collapse
 
carloslahrssen profile image
Carlos Lahrssen

That's happening because the v-data-table only paginates the given data that it receives if I recall correctly. Since you're only returning the 15 in data from Laravel, it'll only attempt to paginate those 15. The best solution is to use the v-pagination component and build out a custom pagination based on this stackoverflow.com/questions/526978....

Thread Thread
 
anna0629 profile image
Anna

owhho~ greate post