sagalbot / vue-select

Everything you wish the HTML <select> element could do, wrapped up into a lightweight, extensible Vue component.
https://vue-select.org
MIT License
4.65k stars 1.34k forks source link

Instead of a masonry layout for multiple selected options, have one option per line #1840

Open eric-g-97477 opened 4 months ago

eric-g-97477 commented 4 months ago

Is your feature request related to a problem? Please describe. In my case, a user needs to select multiple options. To have them fit, the field needs to grow in width or height. In my case, it would be better to allow the field to grow in height or at least have a height to fit a reasonable number of options before scrolling. This leads to some lines containing two or more options. I find some lines containing a single option and some lines containing two or more options difficult to read.

Describe the solution you'd like I would like a prop or some other method so there is just a single option per line.

Describe alternatives you've considered Rolling my own control with the feature I want.