在Vue里面\n\r换行符失效问题处理方法-boldiy
2023-03-14 本文已影响0人
boldiy
<div class="demo-progress" style="white-space: pre-wrap">
<el-progress
showText
:width="108"
type="circle"
:format="
r => {
return r + '%\r\n
在线率';
}
"
:percentage="OnlineRate"
/>
</div>
只需加上white-space: pre-wrap即可。