diff --git a/packages/autocomplete/src/autocomplete.vue b/packages/autocomplete/src/autocomplete.vue index afe0fc6cc..d35273a03 100644 --- a/packages/autocomplete/src/autocomplete.vue +++ b/packages/autocomplete/src/autocomplete.vue @@ -10,8 +10,8 @@ @change="handleChange" @focus="handleFocus" @blur="handleBlur" - @keydown.up.native="highlight(highlightedIndex - 1)" - @keydown.down.native="highlight(highlightedIndex + 1)" + @keydown.up.native.prevent="highlight(highlightedIndex - 1)" + @keydown.down.native.prevent="highlight(highlightedIndex + 1)" @keydown.enter.stop.native="handleKeyEnter" >