NativeSelect
NativeSelect is a selection component allows selecting an item from a drop-down list. It is implemented with the native selection input of web browsers, using the HTML <select> element.
Java
// Create the selection component
NativeSelect<String> select =
new NativeSelect<>("Native Selection");
// Add some items
select.setItems("Mercury", "Venus", ...);
The NativeSelect Component
Common selection component features are described in “Selection Components”.
CSS Style Rules
CSS
.v-select {}
.v-select-select {}
The component has a v-select overall style. The native select element has v-select-select style.