<el-descriptions class="margin-top" :column="3" border :contentStyle="CS" :label-style="LS ">
<el-descriptions-item> <template slot="label"> 姓名 </template> 小米 </el-descriptions-item>
<el-descriptions-item> <template slot="label"> 性别 </template> 女 </el-descriptions-item>
<el-descriptions-item> <template slot="label"> 身高 </template> 1.8m </el-descriptions-item>
<el-descriptions-item> <template slot="label"> 体重 </template> 60kg </el-descriptions-item>
</el-descriptions>
data(){
return{
CS: {
'text-align': 'center', //文本居中
'min-width': '250px', //最小宽度
'word-break': 'break-all' //过长时自动换行
},
LS: {
'color': '#000',
'text-align': 'center',
'font-weight': '600',
'height': '40px',
'background-color': 'rgba(255, 97, 2, 0.1)',
'min-width': '110px',
'word-break': 'keep-all'
}
}
}
网友评论