My select options covering my label "Download".
I've tried to add offset-y
, but the result is still bad.
<v-select offset-y dense outlined :items="downloadOptions" label="Download" v-model="downloadOption"></v-select>
Any hints for me to achieve that?
Use the menu-props
prop.
For boolean values like offset-y
you can just pass a string.
<v-select menu-props="offset-y"></v-select>
Here is the corresponding Documentation.