I have a component that contains a <b-card> component like this:
<b-card :title="post.title">
<p class="card-text">{{ post.body }}</p>
</b-card>
How do I make the card title a clickable link? That is, I can set the text with :title= but there does not exist a parameter to wrap the text in a <a href=""> tag.