1. 使用<br>,搭配v-html
const text=`当前修改后分辨率为${formData.resolution}P,帧率为${formData.fps}fps<br> 是否确认修改?`
<div style="flex-direction: column"><div v-html="text"></div>
</div>
2. 使用\n,搭配style="white-space:pre-line"
const text=`当前修改后分辨率为${formData.resolution}P,帧率为${formData.fps}fps\n 是否确认修改?`
<div style="flex-direction: column"><div style="white-space:pre-line">{{text}}</div>
</div>