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

VUE مرجع: Reactivity

مرجع سريع لـ Reactivity.

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

مرجع VUE — Reactivity

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

الصياغة

<template>...</template>

مثال

<template>
  <button @click="n++">Count: {{ n }}</button>
</template>

<script setup>
import { ref } from "vue";
const n = ref(0);
</script>