e8-form-plain-text
Updated on Sep 18, 2025 7 minutes to readA read-only plain text input component for displaying static values.
e8-form-plain-text renders a read-only text field with optional label and tooltip.
It supports flexible sizing and visibility control.
<e8-form-plain-text
v-model="vars.username"
label="Username"
tooltip="This is a read-only value"
></e8-form-plain-text>
🔽 Show more
Properties
| Property | Description | Type | Default |
|---|---|---|---|
| label | Label text for the input field; set to false to hide label. | string | boolean | — |
| size | Size of the control. | E8ElementSizes | 'default' |
| tooltip | Tooltip text displayed below the input. | string | — |
| v-model | Two-way bound value. | string | — |
| visible | Controls component visibility. | boolean | true |
Slots
| Slot | Description |
|---|---|
| label | Custom label slot. Provides { label, value } as slot props. |