第一种方案
1、代码
<el-form-item>
<label slot="label" v-html="'姓  名:'"></label>
<span>{{rejectFrom.realname}}</span>
</el-form-item>
2、效果
第二种方案
>>> .el-form-item label:after {
content: "";
display: inline-block;
width: 100%;
}
>>>.el-form-item__label {
text-align: justify;
height: 50px;
}
标签:el,form,label,item,格式,对齐
From: https://www.cnblogs.com/zhaoliang1997/p/15761839.html