DrSchool Hızlı kod öğren.
EN AR BN CS DE EL Ara

VUE Referans: Reactivity

Reactivity için hızlı referans.

Okuma süresi: 1 min Kelime: 13
İlerlemem

VUE Referans — Reactivity

Reactivity için hızlı özet, sözdizimi ve örnek.

Sözdizimi

<template>...</template>

Örnek

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

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