Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there option group on Vuetify?

Tags:

vuetify.js

I'd like to have a option group (like this) on a vuetify select.

Is that possible? And if it is, how do I do it?

like image 488
Junior Vilas Boas Avatar asked Sep 24 '18 13:09

Junior Vilas Boas


People also ask

When Vuetify 3 will release?

Vuetify v3. 0 (Titan) Beta was planned to be released during February 2022.

Is Vuetify popular?

Why Vuetify? Since its initial release in 2014, Vue. js has grown to be one of the most popular JavaScript frameworks in the world. One of the reasons for this popularity is the wide use of components which enable developers to create concise modules to be used and re-used throughout their application.

Is Vuetify customizable?

Customizing. By default, Vuetify has a standard theme applied for all components. This can be easily changed. Simply pass a theme property to the Vuetify constructor.

What is the difference between Vuejs and Vuetify?

Vuetify utilizes Google's Material Design design pattern, taking cues from other popular frameworks such as Materialize. css, Material Design Lite, Semantic UI and Bootstrap 4. On the other hand, Vue CLI is detailed as "Standard Tooling for Vue. js Development".


1 Answers

Seems that vuetify now offers this functionality itself. See the example model of the vuetify doku: vuetify doc

So you have to give the array ’items' only an object at the desired position.

Example {'header': 'Mitarbeiter'}

like image 187
DevNik Avatar answered Oct 04 '22 18:10

DevNik