1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > Vue element怎么获取table表格当前行数据和索引值

Vue element怎么获取table表格当前行数据和索引值

时间:2022-02-14 21:26:03

相关推荐

Vue element怎么获取table表格当前行数据和索引值

怎么拿表格当前行数据

平时我们在使用表格时通过template的slot-scope=“scope”,使用scope.row拿到当前行的数据

<el-table max-height="290" :data="userTableData" border style="width: 100%"><el-table-column label="名字"><template slot-scope="scope">{{scope.row.name}}</template></el-table-column><el-table-column label="年龄"><template slot-scope="{row}">{{row.age}}</template></el-table-column></el-table>

怎么拿表格当前行索引值

<el-table max-height="290" :data="userTableData" border style="width: 100%"><el-table-column label="序号"><template slot-scope="scope">{{scope.$index+1}} </template></el-table-column></el-table>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。