elementui中for循环出多个table,如何将table中的勾选项清空
时间: 2024-03-13 09:45:53 浏览: 64
如果要清空elementui表格中的勾选项,可以使用以下的方式:
1. 给table添加 ref 属性:
```html
<el-table ref="table1" :data="tableData">
<!-- ... -->
</el-table>
```
2. 在需要清空勾选项的地方,调用以下代码:
```javascript
this.$refs.table1.clearSelection();
```
其中,`table1` 是表格的 `ref` 属性值,`clearSelection()` 是清空勾选项的方法。这样就可以清空表格中的勾选项了。
阅读全文