When using the b-table
component, I encounter an issue.
<b-table responsive
hover
:items="myItems"
:fields="myField">
My backend returns a URL within my items, and I want to display it in my template.
<template slot="my-link" slot-scope="data">
<a href="data.item.link">link</a>
</template>
However, instead of rendering the desired link, it displays:
<a href="data.item.link">link</a>
What I need is:
<a href="https://mylink.com">link</a>