2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-29 05:14:04 +03:00

fix typeahead select

This commit is contained in:
Jeff Sagal
2016-03-01 22:06:02 -08:00
parent 08b8e21ad9
commit f7b4e6e4f4
4 changed files with 33 additions and 12 deletions
+2 -3
View File
@@ -153,7 +153,7 @@
},
searchable: {
type: Boolean,
default: true
default: false
},
multiple: {
type: Boolean,
@@ -246,8 +246,7 @@
},
typeAheadSelect() {
var option = this.filteredOptions[ this.typeAheadPointer ];
this.select( this.getOptionValue(option) );
this.select( this.filteredOptions[ this.typeAheadPointer ] );
this.search = "";
},