[Vuejs]-Vuetify async search is only submitting one character at a time and doesn't concat characters

0👍

The problem was in the line

:item-text="item =>  `${item.number.number} ${item.name}`"

When changed to just item-text="name" everything was working again.

A related bug report: https://github.com/vuetifyjs/vuetify/issues/11370

Leave a comment