VUE Reference: Templates
Quick reference for Templates.
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>