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

VUE Reference: Templates

Quick reference for Templates.

Read time: 1 min Words: 14
My Progress

VUE Reference — Templates

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