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/bindings-coalesced/main.svelte

12 lines
194 B

<script>
import Foo from './Foo.svelte';
export let p;
export let foo;
export let bar;
export let baz;
</script>
<Foo bind:this={foo} bind:bar bind:baz/>
<p bind:this={p}>{bar + baz}</p>