Vuetify 数据 table 加载时显示最后一页

Vuetify data table show last page when loaded

如何添加道具“page”,以便 table 在加载时显示最后一页。项目的数量是可变的。我应该做 items.lenght/items-per-page 还是有更好的方法?

<v-data-table
                :headers="headers"
                :items="items"
                :search="search"
                multi-sort
                must-sort
                :sort-by="['date', 'number']"
                class="elevation-1"
                :items-per-page="10"
                :footer-props="{
                    showFirstLastPage:true,
                }"
                :loading="loading"
                height="540"
            ></v-data-table>

@grimdbx 根据你上面的评论是正确的,你已经做了正确的尝试,你只需要用计算结果

设置页面 属性

计算的 属性 总是在页面加载时返回最后一个页码

computed: {
   lastPage() {return Math.ceil(this.items.length/10);}
}

here instead of this.itemsPerPage you can replace with 10, since you have harcoded the items per page as per your above code

最终的工作代码看起来像

<div id="app">
  <v-app id="inspire">
    <v-data-table
      :headers="headers"
      :items="desserts"
      :items-per-page="5"
      class="elevation-1"
      :page="lastPage"
    ></v-data-table>
  </v-app>
</div>

new Vue({
  el: '#app',
  vuetify: new Vuetify(),
  computed: {
     lastPage() {return Math.ceil(this.desserts.length/5);}
  },
  data () {
    return {
      headers: [
        {
          text: 'Dessert (100g serving)',
          align: 'start',
          sortable: false,
          value: 'name',
        },
        { text: 'Calories', value: 'calories' },
        { text: 'Fat (g)', value: 'fat' },
        { text: 'Carbs (g)', value: 'carbs' },
        { text: 'Protein (g)', value: 'protein' },
        { text: 'Iron (%)', value: 'iron' },
      ],
      desserts: [
        {
          name: 'Frozen Yogurt',
          calories: 159,
          fat: 6.0,
          carbs: 24,
          protein: 4.0,
          iron: '1%',
        },
        {
          name: 'Ice cream sandwich',
          calories: 237,
          fat: 9.0,
          carbs: 37,
          protein: 4.3,
          iron: '1%',
        },
        {
          name: 'Eclair',
          calories: 262,
          fat: 16.0,
          carbs: 23,
          protein: 6.0,
          iron: '7%',
        },
        {
          name: 'Cupcake',
          calories: 305,
          fat: 3.7,
          carbs: 67,
          protein: 4.3,
          iron: '8%',
        },
        {
          name: 'Gingerbread',
          calories: 356,
          fat: 16.0,
          carbs: 49,
          protein: 3.9,
          iron: '16%',
        },
        {
          name: 'Jelly bean',
          calories: 375,
          fat: 0.0,
          carbs: 94,
          protein: 0.0,
          iron: '0%',
        },
        {
          name: 'Lollipop',
          calories: 392,
          fat: 0.2,
          carbs: 98,
          protein: 0,
          iron: '2%',
        },
        {
          name: 'Honeycomb',
          calories: 408,
          fat: 3.2,
          carbs: 87,
          protein: 6.5,
          iron: '45%',
        },
        {
          name: 'Donut',
          calories: 452,
          fat: 25.0,
          carbs: 51,
          protein: 4.9,
          iron: '22%',
        },
        {
          name: 'KitKat',
          calories: 518,
          fat: 26.0,
          carbs: 65,
          protein: 7,
          iron: '6%',
        },
      ],
    }
  },
})

这是工作代码笔:https://codepen.io/chansv/pen/PoWeMgN?editors=1010