I am using vue-tables-2 library to render tables in Vue.js. I would like to append a button to each cell in a column. Using the following code with slot, the button replaces text in the column instead of appending to it. How can I make it append, not replace?
<v-client-table
class="positions-table"
:data="dataTable"
:columns="columns"
:options="options"
>
<div slot="name">
<button>...</button>
</div>
</v-client-table>