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/test/runtime/samples/select-multiple-spread-and-.../main.svelte

9 lines
138 B

<script>
import Select from './select.svelte';
export let value = ['1'];
export let other = {};
</script>
<Select {value} {other} />