mirror of https://github.com/sveltejs/svelte
18 lines
252 B
18 lines
252 B
6 years ago
|
<script>
|
||
|
let count = 0;
|
||
|
|
||
|
$: if (count >= 10) {
|
||
|
alert(`count is dangerously high!`);
|
||
|
count = 9;
|
||
|
}
|
||
|
|
||
|
function handleClick() {
|
||
|
count += 1;
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<button on:click={handleClick}>
|
||
2 years ago
|
Clicked {count}
|
||
|
{count === 1 ? 'time' : 'times'}
|
||
|
</button>
|