当前位置:   article > 正文

elementUI table组件获取表格当前行的索引_element ui table getrowbyid

element ui table getrowbyid

一般情况下,我们通过 scope.row 获取每一行的数据,但是怎么获取每一行的索引呢?

答案就在下面:

        <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-column prop="user_nickname" label="用户昵称">
          </el-table-column>
          <el-table-column prop="create_time" label="提交时间">
          </el-table-column>
        </el-table>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/100966
推荐阅读
相关标签
  

闽ICP备14008679号