- 在 vxe-table.ts 中添加 createRequiredValidation函数 - 在 data.ts 中使用 createRequiredValidation 替代原有的 className 函数 - 在 vxe-table 插件中添加 validation 相关的工具函数 - 优化表格列的验证逻辑,提高代码复用性和可维护性
14 lines
369 B
TypeScript
14 lines
369 B
TypeScript
export { AsyncComponents, setupVbenVxeTable } from './init';
|
|
export type { VxeTableGridOptions } from './types';
|
|
export * from './use-vxe-grid';
|
|
export { default as VbenVxeGrid } from './use-vxe-grid.vue';
|
|
|
|
export * from './validation';
|
|
export type {
|
|
VxeGridListeners,
|
|
VxeGridProps,
|
|
VxeGridPropTypes,
|
|
VxeTableInstance,
|
|
VxeToolbarInstance,
|
|
} from 'vxe-table';
|