Autocomplete Vue Js

Solution:

You should not use v-select component. vuetify has its own autocomplete component. create v-autocomplete and bind items to your data:

 <v-autocomplete
    label="itemList"
    :items="itemList"
 />

and here is your script data:

  data() {
    return {
      itemList: [
        'one', 'two', 'three',
      ],
    };
  }