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

remove unused file

This commit is contained in:
Jeff
2019-11-07 14:10:10 -08:00
committed by Jeff
parent 2ca2f3094b
commit bc5d0d9e4a
-28
View File
@@ -1,28 +0,0 @@
export default {
// delete
8: e => this.maybeDeleteValue(),
// tab
9: e => this.onTab(),
// enter.prevent
13: e => {
e.preventDefault();
return this.typeAheadSelect();
},
// esc
27: e => this.onEscape(),
// up.prevent
38: e => {
e.preventDefault();
return this.typeAheadUp();
},
// down.prevent
40: e => {
e.preventDefault();
return this.typeAheadDown();
},
};