vuetify's data table
上的道具page
的默认值为1
,每当我选择items per page
时,它就从1
开始,但是我的页面的默认值为0
。
data () {
return {
options: {
page: 0,
itemsPerPage: 40,
},
}
}
<v-data-table
:headers="headers"
:items="residents"
:options.sync="options"
:server-items-length="totalResidents"
:loading="loading"
loading-text="Loading ..... Please wait"
:footer-props="{
itemsPerPageOptions: [5, 10, 20, 40],
itemsPerPageText: 'Residents per page',
}"
:search="search"
class="elevation-23"
>
每当我在列表中选择itemsPerPageOptions
到任何值时,它都从第1页开始,但是我的默认值是0。如何更改vuetify的默认值并将其设置为0?