I'm struggling to include a line break in string interpolation within my printed HTML
this.externalUsers = data.externalUser.map(element => `Name: ${element.firstName} ${element.lastName}\n <br><br />Email: ${element.email}`);
In the code above, I want the first and last name on one line and email on the next
<v-radio
v-for="item in externalUsers"
:key="item.id"
:label="item"
:value="item"
></v-radio>
Utilizing Vue, I am printing it with a for loop.
Here is the final output