Resources
المكتبات الرسمية
دروس عبر الفيديو
مساعدة
المستجدات
Appearance
xxxxxxxxxx
<!--
Say Hello World with Vue!
-->
<script>
export default {
data() {
return {
message: 'Hello World!'
}
</script>
<template>
<h1>{{ message }}</h1>
</template>