vue element-ui 获取 table 行的索引
vue element-ui get index of table row
我只想将按钮添加到 table 列的第一行(示例代码中标有 '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>
我找到了一个解决方案,方法是使用 $index
变量,它是当前行的索引。
<div v-if="scope.$index === 0">
vue template
& 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>
我只想将按钮添加到 table 列的第一行(示例代码中标有 '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>
我找到了一个解决方案,方法是使用 $index
变量,它是当前行的索引。
<div v-if="scope.$index === 0">
vue template
& 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>