"类似 elementui 的表格序号列"
类似 elementui 的表格序号列 <el-table-column type="index"width="50">
const columns = [ { name: 'index', label: '#', field: 'index' }, ] const rows = [ …… ] rows.forEach((row, index) => { row.index = index + 1 })
这样就会追加序号了
这样就会追加序号了