value
Description
sets the value of a comboType
string|number id
Default
an empty string - the value isn't selected
Example
<script>
const dataset = [
{id:1, name:"First option"},
{id:2, name:"Second option"},
{id:3, name:"Third option"}
]
</script>
<Combo options={dataset} value={1} />
Related article: Setting the value
Related sample: Combo