docs: add 1.1.4 changelog
parent
d50fad7f6d
commit
097064a65d
|
@ -2,6 +2,14 @@
|
|||
|
||||
---
|
||||
|
||||
## 1.1.4
|
||||
|
||||
`2018-09-29`
|
||||
- 🛠 Refactor the `vc-tree` component and add a directory tree component
|
||||
- 🐞 Fix `tabs` component property `tabBarGutter` does not work [#205](https://github.com/vueComponent/ant-design-vue/issues/205)
|
||||
- 🐞 Fix `table` component data synchronization error [#202](https://github.com/vueComponent/ant-design-vue/issues/202)
|
||||
|
||||
|
||||
## 1.1.3
|
||||
|
||||
`2018-09-22`
|
||||
|
|
|
@ -2,6 +2,13 @@
|
|||
|
||||
---
|
||||
|
||||
## 1.1.4
|
||||
|
||||
`2018-09-29`
|
||||
- 🛠 重构`vc-tree`组件,并新增目录树组件
|
||||
- 🐞 修复`tabs`组件属性`tabBarGutter`不生效问题 [#205](https://github.com/vueComponent/ant-design-vue/issues/205)
|
||||
- 🐞 修复`table`组件数据同步出错问题 [#202](https://github.com/vueComponent/ant-design-vue/issues/202)
|
||||
|
||||
## 1.1.3
|
||||
|
||||
`2018-09-22`
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
| Property | Description | Type | Default |
|
||||
| -------- | ----------- | ---- | ------- |
|
||||
| treeNodes | treeNode of tree | array | - |
|
||||
| treeData | treeNode of tree, please use `treeNodes` before v1.1.4 | array | - |
|
||||
| autoExpandParent | Whether to automatically expand a parent treeNode | boolean | true |
|
||||
| checkable | Adds a `Checkbox` before the treeNodes | boolean | false |
|
||||
| checkedKeys(v-model) | (Controlled) Specifies the keys of the checked treeNodes (PS: When this specifies the key of a treeNode which is also a parent treeNode, all the children treeNodes of will be checked; and vice versa, when it specifies the key of a treeNode which is a child treeNode, its parent treeNode will also be checked. When `checkable` and `checkStrictly` is true, its object has `checked` and `halfChecked` property. Regardless of whether the child or parent treeNode is checked, they won't impact each other. | string\[] \| {checked: string\[], halfChecked: string\[]} | \[] |
|
||||
|
|
Loading…
Reference in New Issue