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

 <el-table 
:header-cell-style="{textAlign: 'center'}" 
 :cell-style="{ textAlign: 'center' }"
 :data="tableData"
 stripe style=" 100%">
<el-table-column prop="date" label="日期" width="144"></el-table-column>
</el-table>
表头水平居中
:header-cell-style="{textAlign: 'center'}"
表格内容水平居中 :cell-style="{ textAlign: 'center' }"
原文地址:https://www.cnblogs.com/luckybaby519/p/15016319.html