其他分享
首页 > 其他分享> > elementUI el-table表格表头单元格内容居中

elementUI el-table表格表头单元格内容居中

作者:互联网

 <el-table 
:header-cell-style="{textAlign: 'center'}" 
 :cell-style="{ textAlign: 'center' }"
 :data="tableData"
 stripe style="width: 100%">
<el-table-column prop="date" label="日期" width="144"></el-table-column>
</el-table>
表头水平居中
:header-cell-style="{textAlign: 'center'}"
表格内容水平居中 :cell-style="{ textAlign: 'center' }"

标签:居中,el,style,center,elementUI,表头,cell,textAlign
来源: https://www.cnblogs.com/luckybaby519/p/15016319.html