Textarea
A multi-line text input.
Default
Basic textarea.
With Label
Textarea with an associated label.
Custom Rows
Textarea with custom row count.
MayaTextarea Props API
| Prop / Event | Type | Default | Description |
|---|---|---|---|
modelValue | String | "" | The value of the textarea. Used with v-model. |
placeholder | String | "" | Placeholder text when textarea is empty. |
label | String | "" | Optional text label displayed above the textarea. |
rows | Number | 4 | Number of visible text lines. |
disabled | Boolean | false | Whether the textarea is disabled. |
@update:modelValue | Event | — | Emitted when the textarea value changes. |