You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/packages/svelte/tests/runtime-legacy/samples/select-spread-preserve-sele.../main.svelte

17 lines
334 B

<script>
let show_extra = false;
const attributes = { 'aria-label': 'choice' };
export function toggle() {
show_extra = !show_extra;
}
</script>
<select {...attributes}>
<option value="">Choose an option</option>
<option value="first">First</option>
{#if show_extra}
<option value="extra">Extra</option>
{/if}
</select>