Browse Source

Missing semicolon semi

leezng 8 năm trước cách đây
mục cha
commit
dc77b56d31
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      packages/autocomplete/src/autocomplete.vue

+ 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]);
         }
       },