我有来自服务器的响应,其中包含传递给我的 vue 实例的数据数组。我已经使用该数组完成了数据表。但是我只需要知道如何显示序列号的数组索引。
在这里我附上我的组件代码我的响应还可以,表格也可以。我只需要增加一列并在那里显示索引值。
我的阵列名称是客户。
<v-data-table
v-bind:headers="headers"
v-bind:items="customers"
v-bind:search="search"
v-cloak
>
<template slot="items" scope="props">
<td class="text-xs-center">@{{ props.item.id }}</td>
<td class="text-xs-center">
<v-edit-dialog
lazy
@{{ props.item.name }}
>
<v-text-field
slot="input"
label="Edit"
v-model="props.item.name"
single-line
counter
:rules="[max25chars]"
></v-text-field>
</v-edit-dialog>
</td>
<td class="text-xs-center">@{{ props.item.email }}</td>
<td class="text-xs-center">@{{ props.item.email }}</td>
<td class="text-xs-center">@{{ props.item.created_at }}</td>
<td class="text-xs-center">
<v-btn small outline fab class="red--text" @click="showWarning(props.item.id)">
<v-icon>mdi-account-remove</v-icon>
</v-btn>
<v-btn small outline fab class="green--text" @click="showWarning(props.item.id)">
<v-icon>mdi-account-off</v-icon>
</v-btn>
</td>
</template>
<template slot="pageText" scope="{ pageStart, pageStop }">
From @{{ pageStart }} to @{{ pageStop }}
</template>
</v-data-table>
原文由 Sakil 发布,翻译遵循 CC BY-SA 4.0 许可协议
编辑 7/30/19 正如@titou10 提到的, Vuetify 2.0 中没有索引字段。
在环顾四周后,我能够通过使用
item.<name>
slot 来实现这一点。这个插槽会给我一个item
。我根据对象id
创建了一个 ID 数组,并调用了indexOf(item.id)
来获取索引位置。代码笔 在这里。
Vuetify 1.x
每个道具对象都包含两个键:
item
和index
。您可以通过props.index
访问每个项目的索引。添加新标头就像在标头数组中添加新项目一样简单。这是一个代码笔作为示例。我正在将数据表的第一列更改为索引位置。
https://codepen.io/potatogopher/pen/eGBpVp