VUE مرجع: Reactivity
مرجع سريع لـ Reactivity.
مرجع VUE — Reactivity
ملخص سريع عن Reactivity مع صياغة ومثال.
الصياغة
<template>...</template>
مثال
<template>
<button @click="n++">Count: {{ n }}</button>
</template>
<script setup>
import { ref } from "vue";
const n = ref(0);
</script>