<el-table-column
width="140"
align="center"
prop="name"
label="综合能力"
show-overflow-tooltip
sortable
:sort-method="
(a, b) => {
return a.name- b.name;
}
"
>
<template slot-scope="scope">
{{ scope.row.name}}
</template>
</el-table-column>
element table 列表排序
于 2024-01-09 17:33:58 首次发布