Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

529
Views
Vuetify data table - previous/next page is showing on the left side when items-per-page is hidden

I'm trying to completely hide the items-per-page choices from a table while keeping next/previous functionality untouched.

I can hide it by setting this props:

:footer-props="{
              'items-per-page-options':[10],
              'disable-items-per-page': true,
            }"

Thisenter image description here is great but now the previous/next functionality is on the left side of the table footer. I want to keep it on the right.

How can I do that?

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

It's a bug that has already been described in issues #13751 and #13678 of vuetify library. But there's still no "out of the box" solution.

You may fix your issue in several ways:

First way: Add footer.prepend slot into your <v-data-table> component with <v-spacer/> component:

<v-data-table 
  ...
  :footer-props="{
    'items-per-page-options':[10],
    'disable-items-per-page': true,
  }"
>
  <template #footer.prepend>
    <v-spacer/>
  </template>
</v-data-table>

Second way: If you don't need to support RTL, you may override one of the built-in CSS classes:

.v-application--is-ltr .v-data-footer__pagination {
  margin-left: auto;
}

There's a codepen where you may test both ways before applying it into your project.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!