el-table多选框实现单选
时间: 2023-12-01 12:40:51 浏览: 149
vue3 el-table多级表头收缩扩展的实现(JS原味版)
可以通过监听 el-table 的 @row-click 事件来实现 el-table 多选框的单选功能。具体步骤如下:
1.在 el-table 中添加 type="selection",开启多选框功能。
2.在 el-table 中添加 @row-click="handleRowClick" 监听行点击事件。
3.在 methods 中添加 handleRowClick 方法,通过 $refs 获取到 el-table 的 selection 组件,然后将当前行的数据设置为选中项。
下面是示例代码:
```html
<template>
<el-table
ref="table"
:data="tableData"
@row-click="handleRowClick"
style="width: 100%">
<el-table-column
type="selection"
width="55">
</el-table-column>
<el-table-column
prop="date"
label="日期"
width="180">
</el-table-column>
<el-table-column
prop="name"
label="姓名"
width="180">
</el-table-column>
<el-table-column
prop="address"
label="地址">
</el-table-column>
</el-table>
</template>
<script>
export default {
data() {
return {
tableData: [{
date: '2021-01-01',
name: '张三',
address: '北京市朝阳区'
}, {
date: '2021-01-02',
name: '李四',
address: '上海市浦东新区'
}, {
date: '2021-01-03',
name: '王五',
address: '广州市天河区'
}],
selection: []
}
},
methods: {
handleRowClick(row) {
this.$refs.table.toggleRowSelection(row)
this.selection = this.$refs.table.selection
}
}
}
</script>
```
在上面的代码中,我们通过监听 @row-click 事件来实现了 el-table 多选框的单选功能。在 handleRowClick 方法中,我们通过 $refs 获取到 el-table 的 selection 组件,然后将当前行的数据设置为选中项。最后,我们将选中的数据保存在 selection 变量中,以便后续使用。
阅读全文