관리 메뉴

웹개발자의 기지개

[Vue.js] 줄바꿈 nl2br 기능 넣기 본문

javascript/Vue.js

[Vue.js] 줄바꿈 nl2br 기능 넣기

http://portfolio.wonpaper.net 2023. 10. 18. 16:01

 

.pre-formatted {
  white-space: pre;
}

 

new Vue({
  el: '#app',
  data: {
    text: 'Hello Vue.\nThis is a line of text.\nAnother line of text.\n'
  }
})


<div class="pre-formatted">{{ text }}</div>

 

참고 : https://stackoverflow.com/questions/49264645/vuejs-newline-character-is-not-rendered-correctly

 

Comments