I'm having trouble formatting text in Vue.
Within a component, I have a textarea that stores a string with backspaces, etc ... in an API like this:
A cellar but not only...\n\nWelcome to the Nature & Wine cellar, a true Ali-baba's cave for enthusiasts of oenological, spirituous, beer and gastronomic discoveries. Our motto: conviviality and simplicity, our point of honor: to provide you with happiness whether you are a novice or expert. We independently select our wines, beers and spirits by seeking authenticity, originality as well as an ethical commitment to respect for the environment and health.\n\nWine, beer and spirit tasting sessions are offered so that you can acquire the keys to understanding these wonderful products in a 100% convivial atmosphere guaranteed free of pedantry and snobbery.\n\n
When I retrieve and display this data in my template, there is an issue. The text does not include backspaces and displays incorrectly, like this:https://i.sstatic.net/e0ueE.png
To retrieve my text content, I am using the following:
<p>{{ findContent('60f5951649b96602c029af99') }}</p>
In this case, the findContent method returns the content as a String from an array.
Does anyone have any suggestions on how to properly display this text?