如何在多个选择模式下固定Vue Select的高度?

时间:2019-10-12 13:34:48

标签: vue.js vue-select

我正在使用Vue Select组件进行多项选择。在选定的项目上,它将选择的项目作为标记添加到选择框中,在对项目选择框的多次选择看起来像多行文本区域时,我想为vue select设置与文本框相同的固定高度。

<v-select v-model="selectedtype" :options="selectType" :reduce="display => display.type"                          
label="display"
size="xs"
multiple
v-on:input="getTags"
>
<template slot="label" slot-scope="label">  
<span :class="option.icon"></span>                            
{{ option.title }}

</template>                        
</v-select>

[![Sample Image of a problem when multiple tags selected][1]][1]


  [1]: https://i.stack.imgur.com/L9ptQ.png

0 个答案:

没有答案