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

PropTypeDefaultDescription
labelString''Field label
hintStringnullHint text below label
errorStringnullError message (adds red border)

Slots

SlotDescription
defaultThe actual <input> or control element
helpContent for the optional help modal

Related