mirror of https://github.com/sveltejs/svelte
13 lines
234 B
13 lines
234 B
8 years ago
|
<script>
|
||
6 years ago
|
import Widget from './Widget.svelte';
|
||
8 years ago
|
|
||
6 years ago
|
export let bar;
|
||
|
export let x;
|
||
|
export let compound;
|
||
|
export let go;
|
||
8 years ago
|
</script>
|
||
6 years ago
|
|
||
|
<div>
|
||
|
<Widget foo='{bar}' baz='{40 + x}' qux='this is a {compound} string' quux='{go.deeper}'/>
|
||
|
</div>
|