element UI里面表格的行高需要自己调整高度和设置padding,直接写style是不行的,里面有 :

1、row-style (行的 style)    

2、header-row-styl   (表头行的 style)

3、cell-style(单元格的 style)

如果设置行高或padding直接在表格中写 :row-style="height:'32px'"形式也能生效,但是会报错,值为字符串形式不对,需要对象或函数等形式,正确写法如下黑体处:

<el-table  border  :span="24" :row-style="{height:'32px'}"  :header-row-style="{height:'32px'}"  :cell-style="{padding:'1px'}">
  <el-table-column></el-table-column>
  <el-table-column></el-table-column>
</el-table>
 

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-08-29
  • 2021-12-04
  • 2022-12-23
  • 2023-01-21
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-05-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-06
  • 2022-12-23
相关资源
相似解决方案