placeholder
Description
sets the text of the input's placeholderType
string
Example
<script>
const dataset = [
{id:1, name:"First option"},
{id:2, name:"Second option"},
{id:3, name:"Third option"}
]
</script>
<Combo options={dataset} placeholder="Select an option"/>
Details
For a placeholder to be visible in the input, a combo should be initialized without the initial value specified.
Related article: Adding a placeholder for the input
Related sample: Combo