第一种:在el-table中加上 header-cell-style和cell-style样式
<el-table :data="list"
:header-cell-style="{ textAlign: 'center' }"
:cell-style="{ textAlign: 'center' }"
></el-table>
第二种:在style中加上 CSS样式
<style lang="scss" scoped>
::v-deep .el-table th > .cell {
text-align: center;
}
::v-deep .el-table .cell {
text-align: center;
}
</style>

3044

被折叠的 条评论
为什么被折叠?



