如题:最新版本的element-ui 关于table row-style 失效
之前是return str 样式字符串,新文档需要返回Object,因此需要改变
<el-table :data="tableData" :row-style="showRow" ></el-table> methods: { showRow({row, rowIndwx}) { let styleJson = {} if (row.show) { styleJson = { 'display': 'block' } } else { styleJson = { 'display': 'none' } } return styleJson // 返回对象 } }
这样就可以生效了