我想在我的数据表中使用 自定义排序。我的目标是对表 DESC 进行排序,而不是对默认 ASC 进行排序。但我不知道怎么做。
这是我的数据表组件的开始:
<v-data-table
:headers="headers"
:items="acts"
hide-actions
class="elevation-1"
>
<template slot="items" slot-scope="props">
<td>{{ props.item.id }}</td>
<td>{{ props.item.name }}</td>
<td class="text-xs-center">{{ props.item.provider.id }}</td>
<td class="text-xs-center">{{ props.item.category.name }}</td>
<td class="text-xs-center">{{ props.item.budget }}</td>
<td class="text-xs-center">{{ props.item.location.name }}</td>
<td class="text-xs-center">{{ props.item.deets }}</td>
<td class="text-xs-center">{{ props.item.keeping_it_100 }}</td>
<td class="text-xs-center"><img width="50" height="50" :src="props.item.inspiration.inspiration"></td>
<td class="justify-center layout px-0">....
这是我正在使用的脚本:
<script>
export default {
data () {
return {
dialog: false,
customerSort: {
isDescending: true,// I tried this? as the kabab format throws an error
},
headers: [
{ text: 'ID', value: 'id'},
{ text: 'Name', value: 'name' },
{ text: 'Provider', value: 'provider' },
{ text: 'Category', value: 'category' },
{ text: 'Budget', value: 'budget' },
{ text: 'Country', value: 'location', sortable: true },
{ text: 'Keeping it 100%', value: 'keeping_it_100', sortable: false },
{ text: 'deets', value: 'deets', sortable: false },
{ text: 'inspiration', value: 'inspiration', sortable: false },
{ text: 'Cover', value: 'cover', sortable: false },
{ text: 'Actions', value: 'actions', sortable: false }
],
根据文档,它是 function prop
。但我还没有找到如何通过它的例子。
原文由 Seif 发布,翻译遵循 CC BY-SA 4.0 许可协议
您可以使用这样的功能-
其中 compare 是比较 a.date 和 b.date 并 返回
1
或-1
的函数isDesc
是一个由表传递的变量,它告诉用户想要以什么顺序对其进行排序。如果要按 desc 排序,只需在if-else
条件中使用 !isDesc要在您的模板中使用它,只需使用
为了确保您的其他字段仍然可以正常排序使用