live_svelte/examples/store/StoreExample1.svelte

9 lines
134 B
Svelte
Raw Permalink Normal View History

2023-02-27 22:38:29 +00:00
<script>
2023-03-30 22:51:24 +00:00
import store from "./store"
2023-02-27 22:38:29 +00:00
</script>
<label>
2023-03-30 22:51:24 +00:00
<input type="checkbox" bind:checked={$store} />
{$store}
</label>