4👍
You could use CSS for this:
-
Style the selections (
.v-select__selections
) withflex-wrap:nowrap
to prevent the wrapping, and withoverflow:scroll
to allow scrolling if the selections exceed the width of the container. -
Style the chip (
.v-chip
) withoverflow:initial
to allow the chip to expand to its full width inside the container (prevents cutting off the chip).
.v-select__selections {
overflow: scroll;
flex-wrap: nowrap;
}
.v-chip {
overflow: initial;
}
- [Vuejs]-Can't pass data from blade to vue (Laravel 5.3)
- [Vuejs]-How to handle files from Dropzone & Multer (chunked post calls)
Source:stackexchange.com