In my Vue.JS code I have array in object which I parsed in string like this:
destination: item[1].destination.join('\n')
In console.log(obj) I can see it looks like this:
destination: "test1\ntest3\ntest3"
But on page it looks like common string, without \n.
How can I parse it to make HTML see those \n?

<br>