sort data json
rowitem: 'https://api',
sortcol: '',
sortAsc: '',
sortRow() {
if(this.sortCol === col) this.sortAsc = !this.sortAsc;
this.sortCol = col;
this.rowItems.sort((a, b) => {
if(a[this.sortCol] < b[this.sortCol]) return this.sortAsc?1:-1;
if(a[this.sortCol] > b[this.sortCol]) return this.sortAsc?-1:1;
return 0;
});
}
ไม่มีความคิดเห็น:
แสดงความคิดเห็น