瀏覽代碼

Missing semicolon semi

leezng 8 年之前
父節點
當前提交
dc77b56d31
共有 1 個文件被更改,包括 1 次插入1 次删除
  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]);
         }
       },