在使用模板字符串时,常常会遇到需要换行展示的情况,然而仅仅在模板字符串里面使用<br>或者\n是行不通的,一般换行有以下两种做法。
const text=`当前修改后分辨率为${formData.resolution}P,帧率为${formData.fps}fps<br> 是否确认修改?`
<div style="flex-direction: column">
<div v-html="text"></div>
</div>
const text=`当前修改后分辨率为${formData.resolution}P,帧率为${formData.fps}fps\n 是否确认修改?`
<div style="flex-direction: column">
<div style="white-space:pre-line">{{text}}</div>
</div>