mirror of https://github.com/sveltejs/svelte
23 lines
427 B
23 lines
427 B
<script>
|
|
import Thing from './Thing.svelte';
|
|
|
|
let things = [
|
|
{ id: 1, color: '#0d0887' },
|
|
{ id: 2, color: '#6a00a8' },
|
|
{ id: 3, color: '#b12a90' },
|
|
{ id: 4, color: '#e16462' },
|
|
{ id: 5, color: '#fca636' }
|
|
];
|
|
|
|
function handleClick() {
|
|
things = things.slice(1);
|
|
}
|
|
</script>
|
|
|
|
<button on:click={handleClick}>
|
|
Remove first thing
|
|
</button>
|
|
|
|
{#each things as thing (thing.id)}
|
|
<Thing current={thing.color}/>
|
|
{/each} |