[Doc] add component changelog (#1816)

This commit is contained in:
neverland
2018-09-17 15:10:07 +08:00
committed by GitHub
parent 47aaf254b9
commit bde9f5adb2
55 changed files with 1102 additions and 383 deletions
+1
View File
@@ -91,6 +91,7 @@ Setting `type` to `flex` to enable flex layout
| Attribute | Description | Type | Default |
|-----------|-----------|-----------|-------------|
| type | Layout type, can be set to `flex` | `String` | - |
| gutter | Grid spacingpx | `String | Number` | - |
| tag | Custom element tag | `String` | `div` |
| justify | Flex main axiscan be set to end/center/space-around/space-between | `String` | `start` |
+9
View File
@@ -92,6 +92,7 @@ Layout 组件提供了`24列栅格`,通过在`Col`上添加`span`属性设置
| 参数 | 说明 | 类型 | 默认值 |
|-----------|-----------|-----------|-------------|
| type | 布局方式,可选值为`flex` | `String` | - |
| gutter | 列元素之间的间距(单位为px) | `String | Number` | - |
| tag | 自定义元素标签 | `String` | `div` |
| justify | Flex 主轴对齐方式,可选值为 end/center/space-around/space-between | `String` | `start` |
@@ -104,3 +105,11 @@ Layout 组件提供了`24列栅格`,通过在`Col`上添加`span`属性设置
| span | 列元素宽度 | `String | Number` | - |
| offset | 列元素偏移距离 | `String | Number` | - |
| tag | 自定义元素标签 | `String` | `div` |
### 更新日志
| 版本 | 类型 | 内容 |
|-----------|-----------|-----------|
| 1.1.9 | feature | 新增 type 属性 |
| 1.1.9 | feature | 新增 align 属性 |
| 1.1.9 | feature | 新增 justify 属性 |