DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

VUE Reference: Reactivity

Quick reference for Reactivity.

Read time: 1 min Words: 14
My Progress

VUE Reference — Reactivity

Quick summary of Reactivity with syntax and example.

Syntax

<template>...</template>

Example

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

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