leezng 8 жил өмнө
parent
commit
dc77b56d31

+ 1 - 1
packages/autocomplete/src/autocomplete.vue

@@ -135,7 +135,7 @@
       },
       handleKeyEnter(e) {
         if (this.suggestionVisible && this.highlightedIndex >= 0 && this.highlightedIndex < this.suggestions.length) {
-          e.preventDefault()
+          e.preventDefault();
           this.select(this.suggestions[this.highlightedIndex]);
         }
       },