vue学习总结-elementUi中的table的序号
程序员文章站
2022-07-01 19:11:45
...
直接在table中增加一列:看代码
<el-table-column
label="序号"
width="70px">
<template slot-scope="scope">
{{scope.$index+1}}
</template>
</el-table-column>
看效果:
推荐阅读
-
学习php过程中的一些注意点的总结_PHP
-
Lua中的table学习笔记
-
学习php过程中的一些注意点的总结_PHP教程
-
vue模板中elementui的应用el-table-column prop如何调用json对象,将数字转成中文
-
elementUI+vue中的日期选择器的编辑和回显
-
【Vue学习总结】Vue路由中的嵌套
-
详解Vue Elementui中的Tag与页面其它元素相互交互的两三事
-
python学习笔记之面向对象中的静态方法、类方法、属性方法总结
-
vue elementUI table 自定义表头和行合并的实例代码
-
vue elementUI table 自定义表头和行合并的实例代码