UxInput
components/ux/Input.vue
Form field wrapper with label, optional hint, error message display, and help modal trigger.
Required
States
* This email is already taken
Contact admin to change
components/ux/Input.vue
Usage
<UxInput
label = "—"
hint = "null"
error = "null"
>
Content here
</UxInput>
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| label | String | '' | Field label |
| hint | String | null | Hint text below label |
| error | String | null | Error message (adds red border) |
Slots
| Slot | Description |
|---|---|
| default | The actual <input> or control element |
| help | Content for the optional help modal |