placeholder

On this page

Description:

This key defines the text shown when this input has no value.

Appears in:
└── Text Input
    └── options
        └── placeholder
Type:
string
Examples:

In this example, we have configured a placeholder for a Text Input.

Copied to clipboard
_inputs:
  title:
    type: text
    options:
      placeholder: Enter a title
{
  "_inputs": {
    "title": {
      "type": "text",
      "options": {
        "placeholder": "Enter a title"
      }
    }
  }
}
Open in a new tab