Basic Input Text
The input element with a type attribute whose value is "text" represents a one-line plain text edit control for the input element’s value. Check out code for detail of usage.
Label Text
The label represents a caption for an item in a user interface. Check out code for detail of usage.
Helper Text
Helper text conveys additional guidance about the input field, such as how it will be used. Check out code for detail of usage.
Rounded Input
Input text can have a rounded shape. To do this, you should use
the
rounded-full
utility. Check out
code for detail of usage.
Filled Input
Inputs can be filled. Check out code for detail of usage.
Input Size
Input text can have various sizes. Check out code for detail of usage.
Input Dataset
A datalist with pre-defined options (connected to an
<input>
element): Check
out code for detail of usage.
Disabled Text Input
Disabled text input have their own style when disabled. Check out code for detail of usage.
Input Validation
You can validate the input text value using any validation libraries. Check out code for detail of usage.
Debounce Support
By adding .debounce
to x-model,
you can easily debounce the updating of bound input. Check out
code for detail of usage.
Value:
Lazy Support
By adding the .lazy
modifier,
you can force an x-model input to only update the property when
user focuses away from the input element. Check out code for
detail of usage.
Value: