文本内容有 \n ,怎么换行?
1. v-html渲染
使用正则将 \n 替换成 <br />标签,再用v-html渲染
this.content = value.replace(/\n/g,'<br>')
<div v-html="this.content"></div>
2.使用css的white-space
<div style="white-space: pre-wrap;">{{text}}</div>
文本内容有 \n ,怎么换行?
使用正则将 \n 替换成 <br />标签,再用v-html渲染
this.content = value.replace(/\n/g,'<br>')
<div v-html="this.content"></div>
<div style="white-space: pre-wrap;">{{text}}</div>
2024-06-03 12:06:08
2024-06-03 12:06:05
2024-06-03 12:06:04
2024-06-03 12:06:04
2024-06-03 12:06:59
2024-06-03 12:06:59
2024-06-03 12:06:49
2024-06-03 12:06:49
2024-06-03 12:06:48
2024-06-03 12:06:48