docs: add 1.0.1 cahngelog & update menu doc
parent
02ab242197
commit
328ed632de
|
@ -2,6 +2,15 @@
|
|||
|
||||
---
|
||||
|
||||
## 1.0.1
|
||||
|
||||
`2018-07-27`
|
||||
- 🌟 Optimize Chinese input for `Input` components(just support v-model) [4a5154](https://github.com/vueComponent/ant-design/commit/4a51544bd6470ab628dda80e9d7593e4603dd0b6)
|
||||
- 🐞 Fix `treeSelect` `treeData[i].children` throw error when null[#81](https://github.com/vueComponent/ant-design/issues/81)
|
||||
- 🐞 Fix `Calendar` change event call twice[#82](https://github.com/vueComponent/ant-design/issues/82)
|
||||
- 🐞 Fix the `description` and `title` slot attribute of the `Card` component does not work[#83](https://github.com/vueComponent/ant-design/issues/83)
|
||||
- 🐞 Fix `dropdownClassName` attribute of `DataPicker` component does not working[02ab242](https://github.com/vueComponent/ant-design/commit/02ab242197b923f2157f41d98a7930512475a799)
|
||||
|
||||
## 1.0.0
|
||||
|
||||
`2018-07-21`
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
---
|
||||
|
||||
## 1.0.1
|
||||
|
||||
`2018-07-27`
|
||||
- 🌟 针对`Input`组件优化中文输入(仅在v-model绑定时生效) [4a5154](https://github.com/vueComponent/ant-design/commit/4a51544bd6470ab628dda80e9d7593e4603dd0b6)
|
||||
- 🐞 修复`TreeSelect` `treeeData[i].children`为`null`时报错问题[#81](https://github.com/vueComponent/ant-design/issues/81)
|
||||
- 🐞 修复`Calendar`组件的 change 事件触发两次的问题[#82](https://github.com/vueComponent/ant-design/issues/82)
|
||||
- 🐞 修复`Card`组件的`description`和`title`属性slot不生效问题[#83](https://github.com/vueComponent/ant-design/issues/83)
|
||||
- 🐞 修复`DataPicker`组件的`dropdownClassName`属性不生效问题[02ab242](https://github.com/vueComponent/ant-design/commit/02ab242197b923f2157f41d98a7930512475a799)
|
||||
|
||||
## 1.0.0
|
||||
|
||||
`2018-07-21`
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
|
||||
### Menu事件
|
||||
| 事件名称 | 说明 | 回调参数 |
|
||||
| --- | --- | --- |
|
||||
| click | 点击 MenuItem 调用此函数 | function({ item, key, keyPath }) |
|
||||
| deselect | 取消选中时调用,仅在 multiple 生效 | function({ item, key, selectedKeys }) |
|
||||
| openChange | SubMenu 展开/关闭的回调 | function(openKeys: string\[]) |
|
||||
|
|
Loading…
Reference in New Issue