Components / Textarea

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 / EventTypeDefaultDescription
modelValueString""The value of the textarea. Used with v-model.
placeholderString""Placeholder text when textarea is empty.
labelString""Optional text label displayed above the textarea.
rowsNumber4Number of visible text lines.
disabledBooleanfalseWhether the textarea is disabled.
@update:modelValueEventEmitted when the textarea value changes.