feat: 修复 vxetable 实例中缺少的 getRefMaps 和 getComputeMaps 方法 (#3361)
Co-authored-by: gavin-james <meaganlindesy1258@gmail.com>
This commit is contained in:
parent
beee35173b
commit
2376e8f67d
|
|
@ -1,12 +1,21 @@
|
||||||
import { GridMethods, TableMethods, TableEditMethods, TableValidatorMethods } from 'vxe-table';
|
import {
|
||||||
|
GridMethods,
|
||||||
|
TableMethods,
|
||||||
|
TableEditMethods,
|
||||||
|
TableValidatorMethods,
|
||||||
|
VxeGridConstructor,
|
||||||
|
} from 'vxe-table';
|
||||||
|
|
||||||
export const gridComponentMethodKeys: (
|
export const gridComponentMethodKeys: (
|
||||||
| keyof GridMethods
|
| keyof GridMethods
|
||||||
| keyof TableMethods
|
| keyof TableMethods
|
||||||
| keyof TableEditMethods
|
| keyof TableEditMethods
|
||||||
| keyof TableValidatorMethods
|
| keyof TableValidatorMethods
|
||||||
|
| keyof VxeGridConstructor
|
||||||
)[] = [
|
)[] = [
|
||||||
// vxe-grid 部分
|
// vxe-grid 部分
|
||||||
|
'getRefMaps',
|
||||||
|
'getComputeMaps',
|
||||||
'dispatchEvent',
|
'dispatchEvent',
|
||||||
'commitProxy',
|
'commitProxy',
|
||||||
'getFormItems',
|
'getFormItems',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue