1
0
mirror of synced 2025-12-07 22:28:34 +08:00

修复自定义列报错问题

This commit is contained in:
xuliangzhan
2024-04-24 15:32:59 +08:00
parent 3ed5b412f4
commit 59232e5ec0
4 changed files with 15 additions and 3 deletions

8
types/table.d.ts vendored
View File

@@ -1866,6 +1866,14 @@ export namespace VxeTablePropTypes {
* 只对 mouse-config.area 启用后有效,启用多区域选取功能
*/
multiple?: boolean
/**
* 用于指定哪些列允许被选取
*/
includeFields?: string[]
/**
* 用于排除指定列允许不允许被选取
*/
excludeFields?: string[]
/**
* 只对 mouse-config.area 启用后有效,点击列头是否选取当前列的所有单元格
*/

2
types/tooltip.d.ts vendored
View File

@@ -102,7 +102,7 @@ export type VxeTooltipEmits = [
]
export namespace VxeTooltipDefines {
interface TooltipEventParams extends VxeEvent {
export interface TooltipEventParams extends VxeEvent {
$tooltip: VxeTooltipConstructor
}
}