You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/documentation/examples/07-stores/00-writable-stores/App.svelte

19 lines
376 B

<script>
import { count } from './stores.js';
import Incrementer from './Incrementer.svelte';
import Decrementer from './Decrementer.svelte';
import Resetter from './Resetter.svelte';
let countValue;
const unsubscribe = count.subscribe((value) => {
countValue = value;
});
</script>
<h1>The count is {countValue}</h1>
<Incrementer />
<Decrementer />
<Resetter />