i have a v-select component as shown below:
<v-select
class="area-select"
v-model="selectedAreas"
multiple
:items="areas"
item-text="label"
item-value="key"
label="Select" />
...
.area-select {
margin-left: 10px;
margin-right: 10px;
width: 280px;
}
As you have noticed it accepts multiple values. It also has set certain width. The problem is, when i select too many options from this component, it increases it's height. How could i wrap text shown in select, instead of enlarging it? Thanks for any help.
