vue element ui - table 勾选框-遍历获取值的方法 作者:马育民 • 2024-04-29 15:31 • 阅读:10031 # 说明 table官网如下: https://element.eleme.cn/#/zh-CN/component/table 勾选框表格的例子没写全,获取勾选的值如下: ``` //遍历获得多选选中的index值 this.multipleSelection.forEach((value, index) => { console.log(value,index) }); ``` 参考: https://blog.csdn.net/weixin_43185419/article/details/118958541 原文出处:https://www.malaoshi.top/show_1IX7bBBbhWXF.html