DrSchool تعلّم البرمجة بسرعة.
EN AR BN CS DE EL بحث

VUE مرجع: Vue Introduction

مرجع سريع لـ Vue Introduction.

وقت القراءة: 1 min عدد الكلمات: 15
تقدمي

مرجع 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>