A Vue component that creates an input field with a floating label and animated underline.
Prop | Type | Default | Description |
---|---|---|---|
label | String | "Label" | Text to be displayed as the floating label. |
type | String | "text" | Type of the input field (e.g., text, password, email). |
underlineColor | String | "aliceblue" | Color of the animated underline when the input is focused. |
Event | Description |
---|---|
handleInput | Emitted when the input value changes. |
You can customize the FloatingLabel component:
label
prop to change the text of the floating label.type
prop to set the appropriate input type (e.g., text, password, email).underlineColor
prop to change the color of the animated underline.