el-table怎么拿到rowIndex
时间: 2024-04-30 09:24:49 浏览: 123
【JavaScript源代码】vue 使用 sortable 实现 el-table 拖拽排序功能.docx
在 `el-table` 中,可以通过 `index` slot 来获取到当前行的 `rowIndex`。例如:
```html
<template>
<el-table :data="tableData">
<el-table-column label="Name">
<template slot-scope="scope">
<span>{{ scope.row.name }}</span>
</template>
</el-table-column>
<el-table-column label="操作">
<template slot-scope="scope">
<span>当前行的索引是: {{ scope.$index }}</span>
</template>
</el-table-column>
</el-table>
</template>
```
在上面的代码中,我们通过 `scope.$index` 获取到了当前行的 `rowIndex`。
阅读全文