<v-table
:url="url"
:searchParams="searchParams"
:checkbox="checkbox"
:operationsShow="operationsShow"
:fields="fields"
ref="table"
@handleSelection="handleSelectionChange"
>
</v-table>
handleSelectionChange(val) {
this.multipleSelection = [];
val.forEach( (item, index) => {
this.multipleSelection.push(item.member_id);
});
},