Create A Link Inside Vue Bootstrap B-table Cell
I have a b-table compo On my items, I return a url from the back-end, so I want t
Solution 1:
You should bind it using v-bind:href="..."
or shortly :href="..."
with b-link
component :
<templateslot="my-link"slot-scope="data"><b-link:href="data.item.link">link</b-link></template>
Post a Comment for "Create A Link Inside Vue Bootstrap B-table Cell"