I have the following v-select:
It has 7 items (for each weekday) but I want it to show all 7 when it's opened, not only the first 6 with a scrollbar. I can't seem to find an v-select API option for that. I searched on the Vuetify page and on several StackOverflow questions.
How can I do that and if I missed something: What should I have been searching for?
Thanks!

You can unset
max-height, so that the dialog is not limited.It's a property on the underlying
v-menu, you pass it using :menu-props:Here is a snippet (you need to expand it to see it in full height though):
It should work the same using Vuetify for Vue 2, its :menu-props is actually documented a bit better.
Does that work for you?