在使用 Element UI 的 el-table 组件时,如果你需要获取表格中的所有行数据,可以通过以下几种方式实现: 直接访问数据源: el-table 组件的数据源通常绑定在 Vue 组件的 data 函数中定义的一个数组上。你可以直接访问这个数组来获取所有行数据。 vue <template> <el-table :data="tableData"> &...
<el-table-column prop="date"label="日期"width="180"> </el-table-column> <el-table-column label="姓名"width="180"><template slot-scope="scope">{{aa(scope.row.name)+scope.$index}}</template></el-table-column> <el-table-column prop="address"label="地址"> </el-table-column> </...