SVELTE مرجع: Svelte Introduction
مرجع سريع لـ Svelte Introduction.
مرجع SVELTE — Svelte Introduction
ملخص سريع عن Svelte Introduction مع صياغة ومثال.
الصياغة
<script> let x=0; </script>
مثال
<script>
let n = 0;
</script>
<button on:click={() => n += 1}>Count: {n}</button>