Skip to content
PropDefaultType
autocomplete
string

Native html input autocomplete attribute.

defaultOpen
boolean

The open state of the select when it is initially rendered. Use when you do not need to control its open state.

defaultValue
''
string

The value of the select when initially rendered. Use when you do not need to control the state of the Select

dir
'ltr' | 'rtl'

The reading direction of the combobox when applicable.
If omitted, inherits globally from ConfigProvider or assumes LTR (left-to-right) reading mode.

disabled
boolean

When true, prevents the user from interacting with Select

modelValue
string

The controlled value of the Select. Can be bind as v-model.

name
string

The name of the Select. Submitted with its owning form as part of a name/value pair.

open
boolean

The controlled open state of the Select. Can be bind as v-model:open.

required
boolean

When true, indicates that the user must select a value before the owning form can be submitted.

EmitPayload
update:modelValue
[value: string]

Event handler called when the value changes.

update:open
[value: boolean]

Event handler called when the open state of the context menu changes.

Slots (default)Payload
modelValue
string

Current input values

open
boolean

Current open state