James Cole
2021-12-10 15:08:23 +01:00
parent 4468fdd76b
commit 089097a41c

View File

@@ -29,6 +29,8 @@
:serializer="item => item.description"
:showOnFocus=true
autofocus
tabindex="1"
ref="autoComplete"
inputName="description[]"
@input="lookupDescription"
>
@@ -65,6 +67,11 @@ export default {
.then(response => {
this.descriptions = response.data;
this.initialSet = response.data;
if(0===this.index) {
this.$refs.autoComplete.$refs.input.tabIndex = 1;
}
});
},