mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-20 02:49:30 +08:00
11 lines
142 B
Svelte
11 lines
142 B
Svelte
<script>
|
|
let count = 0
|
|
const increment = () => {
|
|
count += 1
|
|
}
|
|
</script>
|
|
|
|
<button on:click={increment}>
|
|
count is {count}
|
|
</button>
|