Recently transitioned from backend development to frontend. Currently delving into the world of Vue and Bootstrap Vue.
One of the challenges I am facing is dynamically populating the bootstrap card attributes such as the title. While I have the necessary data available on the JS side, I have tried using moustache syntax and v-binding without success. Any advice or pointers on how to achieve this would be greatly appreciated.
<b-card
title="{{testTitle}}"
img-src="https://picsum.photos/600/300/?image=25"
img-alt="Image"
img-top
tag="article"
style="max-width: 20rem;"
class="mb-2">
<b-card-text>
Blah blah
</b-card-text>
<b-button href="#" variant="primary">Go somewhere</b-button>
</b-card>