[Vuejs]-VueJS Datatable: How do I get all the rows selected?

1👍

As this document say, you need set the column key:

columns: [
  {
    label: "",
    field: "id",
    sortable: false,
    isKey: true, 
  },
  ...

Check this template

Leave a comment