el-table 表格组件 删除标头分割线
设置border : false ,还需要去掉默认样式,因为默认样式有影响

javascript
/* 全局穿透修改Element Plus表格样式 */
<el-table :data="chargeData" class="custom-carbon-table" style="width: 100%" :border="false" :header-cell-style="headerCellStyle" :cell-style="cellStyle"
:row-style="rowStyle" :show-header="true">
...
:deep(.custom-carbon-table) {
width: 100%;
--el-table-tr-bg-color: unset;
--el-table-bg-color: unset;
// --el-table-border-color: transparent;
// --el-table-header-text-color: #a8c6fa;
// --el-table-text-color: #fff;
// --el-table-row-hover-bg-color: rgba(56, 110, 164, 0.1);
}
