vxe-table vue 表格复选框多选数据,实现快捷键 Shift 批量选择功能
查看官网:https://vxetable.cn
效果

代码
通过 checkbox-config.isShift 启用批量选中,启用后按住快捷键和鼠标批量选取
<template>
<div>
<vxe-grid v-bind="gridOptions"></vxe-grid>
</div>
</template>
<script setup>
import {
ref, reactive } from 'vue'
const gridOptions = reactive({
border: true,
height: 500,
columnConfig: {
resizable: true
},
rowConfig: {
isHover: true
},
checkboxConfig: {
labelField: 'name',
highlight: true,
isShiftKey: true
},
columns: [

最低0.47元/天 解锁文章
6448

被折叠的 条评论
为什么被折叠?



