[Vuejs]-Q-select selection is going outside of the input

0👍

okay figured it out, had to inspect element and found that this class
needs to hide its overflow

.q-field__native {
  overflow: hidden;
}

honestly it should just be like this out of the box. Also
need to add a max width to the q-select otherwise the largest selected option
will just make the box huge.

Leave a comment