vue的 data 文本 中使用换行 \n
https://blog.csdn.net/weixin_43141746/article/details/107892100
使用css 样式 white-space: pre-wrap;
<view class="msg">
{{ message }}
</view>
data() {
return {
message: ' \n 预约成功 \n \n 1-3个工作日会有工作人员回访,请保持电话畅通';
};
},
.msg {
font-weight: bold;
font-size: 30rpx;
white-space: pre-wrap; /*这是重点。文本换行*/
margin: 20rpx auto;
text-align: center;
}