赞
踩
一般情况下,我们通过 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>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。