只需要用<template slot-scope="scope"></template >标签包裹起来即可
使用scope.row.列名,的方式获取当前行对应列的值
可以通过使用作用域插槽的方式获取每一行的id。以下是一个示例代码:文章来源:https://www.toymoban.com/news/detail-817778.html
<el-table-column prop="status" label="状态">
<template slot-scope="scope">
<el-switch v-model="scope.row.status"
active-color="green"
inactive-color="#ff4949"
active-value="1"
active-text="未删除"
inactive-text="已删除"
inactive-value="0"
width="50"
@change="deleteGoods(scope.row.id, scope.row.status)">
</el-switch>
</template>
</el-table-column>
以下是一个示例代码: 文章来源地址https://www.toymoban.com/news/detail-817778.html
<el-table :data="tableData">
<el-table-column prop="id" label="ID">
<template slot-scope="scope">
{{ scope.row.id }}
</template>
</el-table-column>
<!-- 其他列 -->
</el-table>
到了这里,关于Element中的el-table中如何获取每一行的id的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!