You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I have many items available like 1000 items. it's display all the items and "broke" the screen. make the screen larger.
how can I prevent the list to show only after type min length?
The text was updated successfully, but these errors were encountered:
The list should overflow once it reaches the height of 400px by default. You can change it by changing .v-autocomplete-list css property. To trigger the list filter only after a minimum length you can use min-len prop.
If you pre-populate your items list and provide focus to the input, it displays the entire list of options without filtering because it sends a blank input to the filtering function the moment it receives focus.
I check to see if the input is blank, and if it is i return nothing. If the input is not blank, I let the filter function continue.
When I have many items available like 1000 items. it's display all the items and "broke" the screen. make the screen larger.
how can I prevent the list to show only after type min length?
The text was updated successfully, but these errors were encountered: