pull/4452/head
Conduitry 6 years ago
parent 6343d78d96
commit 148121dc49

@ -0,0 +1,3 @@
<script>
export let prop;
</script>

@ -0,0 +1,3 @@
export default {
preserveIdentifiers: true
};

@ -0,0 +1,8 @@
<script>
import Widget from './Widget.svelte';
const values = ['foo', 'bar'];
</script>
{#each values as value}
<Widget bind:value/>
{/each}
Loading…
Cancel
Save