VUE مرجع: Vue Introduction
مرجع سريع لـ Vue Introduction.
مرجع VUE — Vue Introduction
ملخص سريع عن Vue Introduction مع صياغة ومثال.
الصياغة
<template>...</template>
مثال
<template>
<button @click="n++">Count: {{ n }}</button>
</template>
<script setup>
import { ref } from "vue";
const n = ref(0);
</script>