I'm using Vue.js Bootstrap table and I would like to be able to collect each table row id in an Array or Object data property.
Here is an example of a bootstrap table template:
<template v-slot:cell(label)="row" >
<div >
<div class="label"></div>
</div>
</template>
So, how can I collect row.item.id values in an Array or in an Object in order to use this data for other purposes?
Array.map()method from the source data object itself.