vxe table 使用记录
使用原因
element-plus el-table 数据过多直接卡死
“vxe table” 使用过程中遇到的问题
使用 vxe table 1000 条数据渲染,多选花费 10 秒
解决办法 增加下面一行代码
:checkbox-config="{checkField: 'checked'}"
vue
<vxe-table
border="none"
show-overflow
:height="tableHeight"
:row-config="{ height: 66, isHover: true }"
:checkbox-config="{ checkField: 'checked' }"
class="mytable-scrollbar"
:data="tableData"
>
<vxe-column type="checkbox" width="55" fixed="left" align="center"></vxe-column>
<!-- 其他修改 -->
</vxe-table>
参考