今天開發的時候遇到一個問題,<el-table>中的expand模板中嵌套一個table,這個table會被渲染兩次
原因: The fixed attribute in <el-table-column> will causes <el-table-body> to be rendered twice
具有fixed屬性的table會這樣,因為現在 fixed table 的實現方式就是用多個 table 拼裝而成的,實現方式不一樣,去掉fixed屬性就好了
https://github.com/ElemeFE/element/issues/12177