Vue-Element-表格如何获取当前行的 下标 和 数据

<el-table-column
  label="操作"
  min-width="15%" align="center">
  <template slot-scope="scope">
    <el-button @click="cleanDel(scope.row,scope.$index)" ></el-button>
  </template>
</el-table-column>
methods: {
  cleanDel(itme,i){
    alert(itme);
    alert(i);
  }
}


Jsky博客
请先登录后发表评论
  • 最新评论
  • 总共0条评论