DrSchool Hızlı kod öğren.
EN AR BN CS DE EL Ara

VUE Referans: Vue Introduction

Vue Introduction için hızlı referans.

Okuma süresi: 1 min Kelime: 15
İlerlemem

VUE Referans — Vue Introduction

Vue Introduction 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>