VueJS newline character is not rendered correctly VueJS newline character is not rendered correctly javascript javascript

VueJS newline character is not rendered correctly


Not even a vue issue you could simply use CSS and apply white-space: pre; to the content. You shouldn't need an additional package for this.

new Vue({  el: '#app',  data: {    text: 'Hello Vue.\nThis is a line of text.\nAnother line of text.\n'  }})
.pre-formatted {  white-space: pre;}
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.15/vue.js"></script><div id="app">  <div class="pre-formatted">{{ text }}</div></div>