[Vuejs]-V-autocomplete with select all and clear in vuetify

0👍

selectAll() {
  this.filterItems = filterItemsList;
},

clearAll() {
  this.filterItems = [];
}

0👍

You can use clearable option.

check this page:
https://vuetifyjs.com/en/api/v-autocomplete/

Leave a comment