element-ui中table表格表头和表格内容都水平居中
表头水平居中
table :data="tableData" style="width: 100%"
:header-cell-style="{textAlign: 'center'}"
>
column prop="date" label="日期" width="180">
表格内容水平居中
table :data="tableData" style="width: 100%" :cell-style="{ textAlign: 'center' }" >