0
I’m having trouble with this code:
    <v-row>          
      <v-col class="d-flex align-center" cols="12">
        <p>Situação familiar:</p>
        <v-select
          v-model="selectedFamilySituation"
          :items="itemsFamilySituation"
          solo
          dense
        ></v-select>
      </v-col>
    </v-row>
In short, I have a label followed by a select. The problem is that one of the items in select is a very large string, so every time I select this item select increases its width and is thus misaligned.
How can I fix this?
