I am using a v-data-table, with the option "show-select", which shows checkboxes behind every row, but I have no idea how to actually know which rows are checked and get their values...
This is the code
<v-data-table
:headers="TopicHeaders"
:items="allTopics"
:search="searchTopics"
show-select
class="elevation-1"
item-key="name"
></v-data-table>
Run Code Online (Sandbox Code Playgroud)
Thank you