vue-ads-table-tree
vue-ads-table-tree copied to clipboard
the table order is not as i expected
hello, so i have this code
forRows.sort((a, b) => { return a.nomor > b.nomor ? 1 : a.nomor < b.nomor ? -1 : 0; }); this.rows = forRows;
to make the array in order as i wanted to be, if i console.log this.rows
, it shows me the correct order, but inside the table the order is not as the console.log shows. what when wrong? is this a bug?
Hi I have the same problem. Were you able to solve it?