File tree 2 files changed +22
-0
lines changed
2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ import { Upload } from './upload';
67
67
import { Result } from './result' ;
68
68
import { Descriptions } from './descriptions/descriptions' ;
69
69
import { PageHeader } from './page-header' ;
70
+ import { Space } from './space' ;
70
71
71
72
/**
72
73
* Install all ant-design-vue components into Vue.
@@ -142,4 +143,5 @@ export {
142
143
Result ,
143
144
Descriptions ,
144
145
PageHeader ,
146
+ Space ,
145
147
} ;
Original file line number Diff line number Diff line change
1
+ // Project: https://github.com/vueComponent/ant-design-vue
2
+ // Definitions by: drafish <https://github.com/drafish>
3
+ // Definitions: https://github.com/vueComponent/ant-design-vue/types
4
+
5
+ import { AntdComponent } from './component' ;
6
+
7
+ export declare class Space extends AntdComponent {
8
+ /**
9
+ * 对齐方式
10
+ */
11
+ align : 'start' | 'end' | 'center' | 'baseline' ;
12
+ /**
13
+ * 间距方向
14
+ */
15
+ direction : 'vertical' | 'horizontal' ;
16
+ /**
17
+ * 间距大小
18
+ */
19
+ size : 'small' | 'middle' | 'large' | number ;
20
+ }
You can’t perform that action at this time.
0 commit comments