Vue(elementUI table组件获取表格当前行的索引)

 <el-table max-height="290" :data="userTableData" border style=" 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>

  

原文地址:https://www.cnblogs.com/chenwan1218/p/13061512.html