vue-search-select
vue-search-select copied to clipboard
How to set the dropdown list height?
I use the dropdown inside a vuejs modal window,and the the dropdown gets cut if the list size is bigger than the window. the last few elements are missed out from the user view. i have added a screenshot for example.

I had the same issue, turns out its because of min-height: 100vh that set for menu class in my code
just add .menu {min-height: 0 !important} in your component style
or just simply change menu class name where ever you used it