問題:
https://github.com/ElemeFE/element/issues/20253
解決思路:
https://www.cnblogs.com/yscec/p/11880786.html
具體實現:
使用<el-table>中的 header-cell-style 屬性
handleHeader({row,column,rowIndex,columnIndex}){
if ( row === 1){
// 合並第一列和第二列表頭
return { display : 'none'}
}
}
