DrSchool تعلّم البرمجة بسرعة.
EN AR BN CS DE EL بحث

SVELTE مرجع: Svelte Introduction

مرجع سريع لـ Svelte Introduction.

وقت القراءة: 1 min عدد الكلمات: 15
تقدمي

مرجع SVELTE — Svelte Introduction

ملخص سريع عن Svelte Introduction مع صياغة ومثال.

الصياغة

<script> let x=0; </script>

مثال

<script>
  let n = 0;
</script>

<button on:click={() => n += 1}>Count: {n}</button>