Vuido
GitHub
Search…
About Vuido
Introduction
Installation
Usage
Packaging
Built-in Components
Window
Containers
Widgets
Area
Button
Checkbox
ColorButton
Combobox
DatePicker
DateTimePicker
DropdownList
FontButton
ProgressBar
RadioButtons
Separator
Slider
Spinbox
Text
TextArea
TextInput
TimePicker
Powered By
GitBook
Combobox
An input widget for editing text with a drop-down list.
Combobox supports the
v-model
directive.
Attributes
items
type: Array
An array of strings representing the available options.
value
type: String
The current text displayed in the widget.
Events
input
Called when the text is changed. The current text is passed as an argument.
Example
1
<
Combobox
v-bind:
items
=
"
[
'
Option 1
'
,
'
Option 2
'
,
'
Option 3
'
]
"
v-model
=
"
text
"
/>
Copied!
Previous
ColorButton
Next
DatePicker
Last modified
4yr ago
Copy link
Contents
Attributes
items
value
Events
input
Example