Element-ui确实好用,且使用人数众多,边边角角的问题总能大致查到解决方案。
不过在表格里实现换行这个问题,感觉大家的现有方案都比较繁琐,这里贴个我自己的方案。

现有方案:

CSDN-修改样式
思否-相关提问

然而这里可以直接通过template搭配pre搞定:

1
2
3
4
5
6
7
8
<el-table-column
  label="test"
  min-width="200"
>
  <template slot-scope="props">
    <pre style="line-height: normal">{{ props.row.test }}</pre>
  </template>
</el-table-column>