I have a b-table
compo
<b-table responsive
hover
:items="myItems"
:fields="myField">
On my items, I return a url from the back-end, so I want to do on my template
<template slot="my-link" slot-scope="data">
<a href="data.item.link">link</a>
</template>
The above doesn't work, it renders
<a href="data.item.link">link</a>
Instead of
<a href="https://mylink.com">link</a>