[Vuejs]-How do i go down a line in v-combobox โ€“ vuetify

0๐Ÿ‘

โœ…

I found a way to do this using css, but this also shifts the dropdown down with every selection. That is probably not desired. Try it out and see for yourself:

div[role=combobox] .v-select__slot .v-select__selections {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

Leave a comment