我有一个自定义组件,它使用Vue Tables 2中的 v-client-table 方法。该表有两列,其中一列是日期时间列(格式:MM/DD/YYYY h:mm A)。我把它作为可排序的,但它不能根据时间准确排序。其输出如下所示:
如您所见,它从中午 12:09 持续到凌晨 12:30。不幸的是,这种日期/时间格式是必需的。
问题:有没有办法将 momentjs 合并到配置中以使其正确排序(不使用客户端排序文档中显示的过滤器)?
以下是数据和选项:
export const content = {
state: {
columns: ['callDateTime', 'explanation'],
tableData: [
{ callDateTime: '10/13/2017 10:09 AM', explanation: "Lorem ipsum dolor sit amet, consectetur adipiscing elit." },
{ callDateTime: '10/13/2017 12:30 AM', explanation: "Lorem ipsum dolor" },
{ callDateTime: '10/13/2017 12:09 PM', explanation: "Lorem ipsum dolor sit amet },
{ callDateTime: '10/13/2017 1:15 PM', explanation: "Ut a fringilla mauris" },
{ callDateTime: '10/13/2017 1:30 PM', explanation: "Lorem ipsum dolor" }
],
options: {
headings: {
'callDateTime': 'Call Date/Time',
'explanation': 'Interaction Notes',
},
filterable: 'false',
sortable: 'callDateTime',
orderBy: { column: 'callDateTime' },
pagination: {
edge: false,
dropdown: false,
chunk: 1
},
sortIcon: {
down: 'arrow arrow-down',
up: 'arrow arrow-up'
},
perPage: '10',
texts: {
count: ''
}
}
}
}