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