diff --git a/components/lib/autocomplete/AutoComplete.vue b/components/lib/autocomplete/AutoComplete.vue index 945e35ee5..8a7a5b3a7 100755 --- a/components/lib/autocomplete/AutoComplete.vue +++ b/components/lib/autocomplete/AutoComplete.vue @@ -617,10 +617,10 @@ export default { onEnterKey(event) { if (!this.overlayVisible) { this.focusedOptionIndex = -1; // reset + this.onArrowDownKey(event); } else { if (this.focusedOptionIndex !== -1) { this.onOptionSelect(event, this.visibleOptions[this.focusedOptionIndex]); - event.preventDefault(); } this.hide();