Is there any way to change the style of select options in vue?

Viewed 27
1 Answers

Those kind of inputs are not customizable as of today.
Some standards are discussed, especially Open UI: https://open-ui.org/components/select

But there is no way to customize those elements, they are baked in into our devices and set by constructors (Apple, Android, Safari, Chrome etc...).

The only way is to replicate the same behavior but with a totally different visual. This is at least the only solution as of today and what most of CSS frameworks are doing (but not bootstrap-vue as you can see).

Related