再会。我正在尝试编辑我的 v-data-table 以满足我对行和语言的个人需求。我设法编辑了一些字段,但我找不到一种方法来编辑“1-50 of 300”中的“of”。
我正在阅读文档,但我不知道如何更改它。
这是我当前的 v-data-table 文档:
<v-data-table
:headers="headers"
:items="myItems"
:search="search"
no-results-text='LMAO NO DATA'
rows-per-page-text='Data'
:rows-per-page-items="[5, 50, 100, {text:'EVERYTHING', value: -1}] "
class="elevation-3"
>
Run Code Online (Sandbox Code Playgroud)
编辑:Sejir Ben Ali 的回答是正确的,但如果您出现 eslint 错误,请尝试使用:
<template v-slot:[`footer.page-text`]="props">
itens {{ props.pageStart }} - {{ props.pageStop }} of {{ props.itemsLength }}
</template>
Run Code Online (Sandbox Code Playgroud)
小智 5
来自文档(插槽:pageText - https://vuetifyjs.com/en/components/data-tables#slot-pagetext):
您可以使用 pageText 插槽自定义显示范围和总项目的页面文本。
<template>
<v-data-table
:headers="headers"
:items="desserts"
class="elevation-1"
>
<template v-slot:items="props">
<td>{{ props.item.name }}</td>
<td class="text-xs-right">{{ props.item.calories }}</td>
<td class="text-xs-right">{{ props.item.fat }}</td>
<td class="text-xs-right">{{ props.item.carbs }}</td>
<td class="text-xs-right">{{ props.item.protein }}</td>
<td class="text-xs-right">{{ props.item.iron }}</td>
</template>
<template v-slot:pageText="props">
ITEMS {{ props.pageStart }} - {{ props.pageStop }} OF {{ props.itemsLength }} // Edit this
// ^this is what you need
</template>
</v-data-table>
</template>
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
6792 次 |
最近记录: |