The el-table table displays a horizontal line when switching the number of items per page

as the picture shows:

Insert image description here

Solution:
/deep/ .el-table {
    
    
  overflow: auto;
  &::before {
    
    
    display: none;
  }
}

Guess you like

Origin blog.csdn.net/weixin_48300785/article/details/126707137