Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
<template>
<div id="app">
<vue-bootstrap4-table :rows="rows" :columns="columns" :actions="actions" :config="config" @on-select-row="onSelectRow" @on-change-query="onChangeQuery">
</vue-bootstrap4-table>
<span>Checked names: {{ checkedNames }}</span>
</div>
</template>
<code lang="javascript">
data: function() {
return {
checkedNames: []
}
},
methods: {
onSelectRow(e)
{
this.checkedNames=e.selected_items;
},
},
</code>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question