vue element-ui获取表行的索引

时间:2019-08-20 07:16:14

标签: vue.js indexing html-table row element-ui

我只想向表列的第一行添加一个按钮(示例代码中用“ Option”标记)。检查v-if v-if="scope.row.index === 0"的行索引的任何简单方法? scope.row.index在这里不起作用。

<el-table :data="mydata">
<!-- more columns -->
  <el-table-column prop="option" label="Option">
    <template slot-scope="scope">
      <div v-if="scope.row.index === 0">
        <el-row>
          <el-col>
            <el-input v-model="scope.row.option"/>
          </el-col>
          <el-col>
            <el-button @click="">Check</el-button>
          </el-col>
      </el-row></div>
      <div v-else>
        <el-input v-model="scope.row.option" />
      </div>
    </template>
  </el-table-column>
<!-- more columns -->
</el-table>

2 个答案:

答案 0 :(得分:1)

我通过使用$index变量(这是当前行的索引)找到了解决方案。

<div v-if="scope.$index === 0">

答案 1 :(得分:0)

vue模板和scope.$index

  

我的解决方案


 <el-table
    :data="tableData"
    border
    class="app-downlaod-guide-table"
    style="width: 100%">
    <el-table-column
      v-for="({
        prop,
        label,
        align,
        width,
        slot,
      }, i) in channelClomuns"
      :key="prop + i"
      :prop="prop"
      :width="width"
      :align="align"
      :label="label">
      <template
        slot-scope="scope"
        v-if="prop === `putLink`">
        <a
          target="_blank"
          href="tableData[scope.$index].putLink">
          {{tableData[scope.$index].putLink}}
        </a>
      </template>
    </el-table-column>
  </el-table>