I'm currently working on adding a placeholder to a select element, but I'm encountering an issue. When I include the selected
attribute for the first option, it displays as an empty space.
<select>
{#if placeholder}
<option value="" disabled selected>{placeholder}</option>
{/if}
{#each options as option}
<option value={option.value}>
{option.label || option.text}
</option>
{/each}
</select>
Placeholder Image https://i.sstatic.net/CCboz.png