ub-movements/src/lib/Counter.svelte

11 lines
160 B
Svelte
Raw Normal View History

<script lang="ts">
let count: number = 0
const increment = () => {
count += 1
}
</script>
<button on:click={increment}>
count is {count}
</button>