How to sort column ASC using vue-data-table

117 Views Asked by At

I am using https://github.com/AndreSouzaAbreu/vue-data-table.

actually i want to sort marks column in ASC.

columns: [
          {
            key: "12",
            index: 0,
            title: "Mark",
          },
          {
            key: "09",
            title: "Name",
            sortable: true,
            index: 1,
          }
    ]
0

There are 0 best solutions below