Stop Progagation when click clear date icon
This commit is contained in:
parent
12e19b82d8
commit
edc767a624
1 changed files with 2 additions and 1 deletions
|
@ -569,8 +569,9 @@
|
|||
handleInputMouseleave () {
|
||||
this.showClose = false;
|
||||
},
|
||||
handleIconClick () {
|
||||
handleIconClick (event) {
|
||||
if (this.showClose) {
|
||||
event.stopPropagation();
|
||||
this.handleClear();
|
||||
} else if (!this.disabled) {
|
||||
this.handleFocus();
|
||||
|
|
Loading…
Add table
Reference in a new issue