el-table-column自动生成序号&&在序号前插入图标
实现效果:
代码如下:
在el-table里加入这个就可以了,需要拿到值可以用scope.$index
<el-table-column type="index" label="序号" show-overflow-tooltip="true" min-width="40">
<template #default="scope">
<img src="../assets/main/1.png" />
{{ scope.$index + 1 }}
</template>
</el-table-column>
原文地址:https://blog.csdn.net/ZwaterZ/article/details/143943536
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!