Svelteでは「on:イベント名」という属性でイベントを設定する。
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| <script> const messages = ['Hello!', 'Svelte!']; let current = 0;
const countup = () => current = current+1; </script>
<main> {current} <button on:click={countup}>Toggle Message</button> </main>
<style> </style>
|