mirror of https://github.com/sveltejs/svelte
24 lines
402 B
24 lines
402 B
<script>
|
|
import Thing from './Thing.svelte';
|
|
|
|
let things = [
|
|
{ id: 1, name: 'apple' },
|
|
{ id: 2, name: 'banana' },
|
|
{ id: 3, name: 'carrot' },
|
|
{ id: 4, name: 'doughnut' },
|
|
{ id: 5, name: 'egg' },
|
|
];
|
|
|
|
function handleClick() {
|
|
things = things.slice(1);
|
|
}
|
|
</script>
|
|
|
|
<button on:click={handleClick}>
|
|
Remove first thing
|
|
</button>
|
|
|
|
{#each things as thing}
|
|
<Thing name={thing.name}/>
|
|
{/each}
|