1 | import { VXEComponent } from './component'
|
2 | import { VxeFormItemPropTypes } from './form-item'
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 | export const VxeFormGather: VXEComponent<VxeFormGatherProps>
|
11 |
|
12 |
|
13 |
|
14 | export const FormGather: typeof VxeFormGather
|
15 |
|
16 | export interface VxeFormGatherProps {
|
17 | |
18 |
|
19 |
|
20 | span?: VxeFormItemPropTypes.Span
|
21 | |
22 |
|
23 |
|
24 | className?: VxeFormItemPropTypes.ClassName
|
25 | }
|
26 |
|
27 | export interface VxeFormGatherSlots {
|
28 | |
29 |
|
30 |
|
31 | [key: string]: ((params: {
|
32 | [key: string]: any
|
33 | }) => any) | undefined
|
34 | }
|