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

VUE Reference: Directives

Quick reference for Directives.

Read time: 1 min Words: 14
My Progress

VUE Reference — Directives

Quick summary of Directives 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>