During the development, I suddenly encountered the following problem. There was a horizontal line in the table, which was strange and ugly. After searching for a long time, I finally found a correct solution.

Add the following code to app.vue

body .el-table::before {
    z-index: inherit;
}
Copy the code