vbInput
Bulma documentationSource code
An input element styled with Bulma for supported types.
Props
colour
Type: BulmaColour | undefined
size
Type: BulmaSize | undefined
isStatic
Type: boolean
| undefined
When true
, the input styled statically; like a label, un-editable
state
Type: BulmaState | undefined
Visual state of the input
modelValue
Type: any
| undefined
The value of the input; used with v-model
.
Emits
update:modelValue
Emitted when the input value changes.
(name: 'update:modelValue', newValue: typeof props.modelValue) => void {}
newValue
- The new value of the input, which will be the same type as themodelValue
.