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

VUE Reference: Vue Introduction

Quick reference for Vue Introduction.

Read time: 1 min • Words: 16
My Progress

VUE Reference — Vue Introduction

Quick summary of Vue Introduction 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>