移动端框架vant-ui:
<van-cell-group class="m30 borderRadius">
<van-field v-model="content" rows="5" autosize type="textarea" placeholder="请输入内容" />
</van-cell-group>
if(this.content==""){
this.$toast("请输入内容");
return;
}else{
this.content = this.content.replace(/\r\n/g, '<br/>');
//this.content = this.content.replace(/\n/g, '<br/>');
//this.content = this.content.replace(/\s/g, ' '); //空格处理
}
效果: