Aria
Basic
The Aria component is used for collecting user input. It supports various customization options for accessibility and styling.
The basic usage of the Aria component involves binding a data property using the v-model directive. This directive automatically syncs the input value with the specified data property, allowing for two-way data binding.
Placeholder
The placeholder prop provides a hint for the expected input by displaying placeholder text within the input field.
Autocomplete
The autocomplete prop controls the browser's autocomplete feature. It can be set to "on" or "off".
Wrap
The wrap prop specifies the text wrapping behavior for the input field. The available options are "soft", "hard", and "off".
Rows
The rows prop specifies the number of visible rows for text input (applies to textarea elements).
Max Length
The maxLength prop specifies the maximum allowed length of the input field's value.
Custom CSS Class
The classInput prop allows you to apply custom CSS classes to the input element, enabling you to style it according to your design requirements.