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/spread-component-multiple-d.../main.html

11 lines
196 B

<script>
export let foo = false;
export let a = 'a';
export let b = 'b';
export let bar = { baz: 'baz' };
import Widget from './Widget.html';
</script>
<Widget foo={foo ? a : b} {...bar}/>