vue根据list数组的某个key进行排序
this.tableData = this.compar(this.tableData, 'name');compar(array, key) {return array.sort(function (a, b) {const x = a[key];const y = b[key];return x.localeCompare(y);});},
·
this.tableData = this.compar(this.tableData, 'name');
compar(array, key) {
return array.sort(function (a, b) {
const x = a[key];
const y = b[key];
return x.localeCompare(y);
});
},
更多推荐
已为社区贡献1条内容
所有评论(0)