element-ui的table表格控件表头与内容列不对齐问题

element-ui的table表格控件表头与内容列不对齐问题

在 App.vue 文件中添加全局样式。

<style>
/* 解决element table 表头和表体错版问题 */
body .el-table th.gutter{
  display: table-cell!important;
}
</style>
原文地址:https://www.cnblogs.com/wjw1014/p/14202052.html