Commit 2f41d86d authored by 杨奕's avatar 杨奕 Committed by GitHub

Merge pull request #385 from QingWei-Li/fix/date-picker

DatePicker: fix blur event
parents 9c71e58c f0a963c1
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
- 修复 Tree 组件 checkbox 点击失效的问题 - 修复 Tree 组件 checkbox 点击失效的问题
- Breadcrumb 增加路由跳转的功能 - Breadcrumb 增加路由跳转的功能
- 修复 可清空的 Select 中清空按钮的不恰当动画 - 修复 可清空的 Select 中清空按钮的不恰当动画
- DatePicker 修复使用 Tab 键切换时弹出框未隐藏
### 1.0.0-rc.6 ### 1.0.0-rc.6
......
...@@ -312,6 +312,7 @@ export default { ...@@ -312,6 +312,7 @@ export default {
}, },
handleBlur() { handleBlur() {
this.pickerVisible = false;
this.$emit('blur', this); this.$emit('blur', this);
this.dispatch('form-item', 'el.form.blur'); this.dispatch('form-item', 'el.form.blur');
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment