Reputation: 2238
Here's my basic select in vuetify
<v-select
:items="selectablePlaces"
:label="$t('placeLabel')"
v-model="placeId"
required
></v-select>
I want to add to every single select In my app this style:
width: 100px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
or add any possible vue trait to the element, so the text won't be filling the whole screen. How can I achieve that?
here's example of my code https://codepen.io/zbyszek-kisy/pen/vYNzWRO I want all option to be shorten to 100px
Upvotes: 1
Views: 6625