mirror of https://github.com/sveltejs/svelte
23 lines
395 B
23 lines
395 B
<script>
|
|
import Thing from './Thing.svelte';
|
|
|
|
let things = [
|
|
{ id: 1, value: 'a' },
|
|
{ id: 2, value: 'b' },
|
|
{ id: 3, value: 'c' },
|
|
{ id: 4, value: 'd' },
|
|
{ id: 5, value: 'e' }
|
|
];
|
|
|
|
function handleClick() {
|
|
things = things.slice(1);
|
|
}
|
|
</script>
|
|
|
|
<button on:click={handleClick}>
|
|
Remove first thing
|
|
</button>
|
|
|
|
{#each things as thing (thing.id)}
|
|
<Thing value={thing.value}/>
|
|
{/each} |