i don't know where and how to put 'my-table' reference (this.$refs['my-table'].selectedRows
Hey @mustfullDev, add your table reference like so, with all your other options:
<vue-good-table
ref="my-table"
:columns="columns"
:rows="rows">
</vue-good-table>
Try this:
// <vue-good-table>
@on-selected-rows-change="selectionChanged"
//Data
rowSelection: []
// Methods
selectionChanged(params) {
this.rowSelection = params.selectedRows;
},
Closing.
Most helpful comment
Hey @mustfullDev, add your table reference like so, with all your other options: