as shown in the title, I use the component of element-ui and set it to be multi-selectable, but if there are too many options, the position of its drop-down box will be very awkward. I want it to appear from the bottom, is there a great god who knows how to configure
The
code is as follows (the data is not listed):
<el-select v-model="value5" multiple placeholder="">
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value">
</el-option>
</el-select>