DropdownList
A widget for selecting a value from a drop-down list.
DropdownList supports the
v-model
directive.type: Array
An array of strings representing the available options.
type: Number
The index of the currently selected option.
Emitted when the selected option is changed. The current index is passed as an argument.
<DropdownList v-bind:items="[ 'Option 1', 'Option 2', 'Option 3' ]"
v-model="selected"/>
Last modified 5yr ago