VUE Referans: Templates
Templates için hızlı referans.
VUE Referans — Templates
Templates 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>