default-expand-all
是否默认展开所有行,当 Table 包含展开行存在或者为树形表格时有效Boolean—false
expand-row-keys
可以通过该属性设置 Table 目前的展开行,需要设置 row-key 属性才能使用,该属性为展开行的 keys 数组。Array—`
```html
<el-table
:data="tableData"
style="width: 100%;margin-bottom: 20px;"
row-key="id"
:expand-row-keys="['1','5']"
:tree-props="{children:'children'}">
/el-table>
```
image
网友评论