Hi everybody!
I hope that somebody may be able to assist me in this issue …
How do I get a <br>
tag inside a string in a VueJs data function to actually render as working html?
This is what I want to be able to do:
data () {
return {
cards: [
{
title: 'Welcome to <br/> Arrow GTP'
}
And I want the <br>
tag to actually be rendered as an html <br>
and literally break the line. Right now, however, it is simply rendering as the literal characters and letters < br > and not an html tag.
How do I go about making this happen the way that I would like it to?
Thank you in advance for your assistance
R