150e09e
1
2
3
4
5
6
7
8
9
10
11
<script lang="ts"> let count: number = $state(0) const increment = () => { count += 1 } </script> <button onclick={increment}> count is {count} </button>