diff options
Diffstat (limited to 'examples/with-nanostores/src/components/AdminsSvelte.svelte')
-rw-r--r-- | examples/with-nanostores/src/components/AdminsSvelte.svelte | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/examples/with-nanostores/src/components/AdminsSvelte.svelte b/examples/with-nanostores/src/components/AdminsSvelte.svelte index c6125b53e..bae3fbef8 100644 --- a/examples/with-nanostores/src/components/AdminsSvelte.svelte +++ b/examples/with-nanostores/src/components/AdminsSvelte.svelte @@ -1,19 +1,17 @@ <script> - import { users } from '../store/users.js'; + import { admins } from '../store/admins.js'; import { counter, increaseCounter, decreaseCounter } from '../store/counter.js'; - - const list = users.get().filter((user) => user.isAdmin); </script> <h1>Svelte</h1> <ul> - {#each list as user} - <li>{JSON.stringify(user, null, 2)}</li> + {#each $admins as admin} + <li>{JSON.stringify(admin, null, 2)}</li> {/each} </ul> <div> <h3>Counter</h3> - <p>{$counter}</p> + <p>{$counter.value}</p> <button on:click={decreaseCounter}>-1</button> <button on:click={increaseCounter}>+1</button> </div> |