mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-30 00:46:29 +01:00
f45e2b70fd
This also includes elements of RFCs 2 and 3
18 lines
436 B
HTML
18 lines
436 B
HTML
<script>
|
|
import Visibility from './Visibility.html';
|
|
import counter from './counter.js';
|
|
|
|
export let things = ['first thing', 'second thing'];
|
|
export let visibilityMap = {};
|
|
|
|
function visibleThings() {
|
|
counter.count += 1;
|
|
return things.filter(text => visibilityMap[text]);
|
|
}
|
|
</script>
|
|
|
|
{#each things as thing}
|
|
<Visibility bind:isVisible="visibilityMap[thing]">
|
|
<p>{thing} ({visibilityMap[thing]})</p>
|
|
</Visibility>
|
|
{/each} |