I want to create a dynamic bootstrap table that looks something like this: https://examples.bootstrap-table.com/#welcome.html
Currently I am using this code to display my data from an array in the bootstrap table:
<b-table striped hover :items="shotlist_tab.shots"></b-table>
But I also want to add custom buttons on the side for each row (edit / delete).
Is there a way to customize the columns of a "b-table"? I haven't found anything yet.