فيما يلي دليل مفصل خطوة بخطوة مع أمثلة تعليمات برمجية محددة لبناء تطبيق TodoList باستخدام Vue.js:
الخطوة الأولى: إعداد المشروع
ابدأ بإنشاء Vue.js مشروع جديد باستخدام Vue CLI. افتح Terminal وقم بتشغيل الأمر التالي:
vue create todo-list-app
سيؤدي هذا إلى إنشاء دليل جديد يسمى todo-list-app
بهيكل المشروع الأساسي والتبعيات.
الخطوة 2: إنشاء ملف TodoList Component
داخل src
المجلد ، قم بإنشاء ملف جديد يسمى TodoList.vue
. سيكون هذا هو المكون الرئيسي للتطبيق TodoList.
في TodoList.vue
:
<template>
<div>
<h1>TodoList</h1>
<!-- Render TodoItems here -->
</div>
</template>
<script>
export default {
name: 'TodoList',
data() {
return {
todos: [
{ id: 1, text: 'Learn Vue.js', completed: false },
{ id: 2, text: 'Build a TodoList app', completed: false },
// Add more todo items here
]
};
}
};
</script>
<style>
/* Add your custom styles here */
</style>
الخطوة 3: إنشاء ملف TodoItem Component
داخل src
المجلد ، قم بإنشاء ملف جديد يسمى TodoItem.vue
. سيكون هذا مكونًا فرعيًا مسؤولاً عن تقديم عناصر المهام الفردية.
في TodoItem.vue
:
<template>
<div:class="{ 'completed': todo.completed }">
<input type="checkbox" v-model="todo.completed">
<span>{{ todo.text }}</span>
<button @click="deleteTodo">Delete</button>
</div>
</template>
<script>
export default {
name: 'TodoItem',
props: ['todo'],
methods: {
deleteTodo() {
// Emit a custom event to notify the parent component(TodoList) to delete this todo item
this.$emit('delete', this.todo.id);
}
}
};
</script>
<style scoped>
.completed {
text-decoration: line-through;
}
</style>
الخطوة 4: تحديث ملف TodoList Component
داخل TodoList vue ، حدّث قسم النموذج لعرض s TodoItem باستخدام التوجيه v-for.
في TodoList.vue
:
<template>
<div>
<h1>TodoList</h1>
<div v-for="todo in todos":key="todo.id">
<TodoItem:todo="todo" @delete="deleteTodo"></TodoItem>
</div>
<!-- Add a form to add new todo items -->
<form @submit.prevent="addTodo">
<input type="text" v-model="newTodoText">
<button type="submit">Add Todo</button>
</form>
</div>
</template>
<script>
import TodoItem from './TodoItem.vue';
export default {
name: 'TodoList',
components: {
TodoItem
},
data() {
return {
todos: [
{ id: 1, text: 'Learn Vue.js', completed: false },
{ id: 2, text: 'Build a TodoList app', completed: false },
// Add more todo items here
],
newTodoText: ''
};
},
methods: {
deleteTodo(id) {
// Find the index of the todo item in the array
const index = this.todos.findIndex(todo => todo.id === id);
// Remove the item from the array
this.todos.splice(index, 1);
},
addTodo() {
if(this.newTodoText) {
// Generate a unique ID for the new todo item
const newTodoId = this.todos.length + 1;
// Create a new todo item object and add it to the array
this.todos.push({
id: newTodoId,
text: this.newTodoText,
completed: false
});
// Clear the input field
this.newTodoText = '';
}
}
}
};
</script>
<style>
/* Add your custom styles here */
</style>
الخطوة 5: اختبار TodoList التطبيق
لاختبار TodoList التطبيق ، افتح ملف "src / App.vue" واستبدل المحتوى الموجود بالرمز التالي:
<template>
<div id="app">
<TodoList></TodoList>
</div>
</template>
<script>
import TodoList from './TodoList.vue';
export default {
name: 'App',
components: {
TodoList
}
};
</script>
<style>
/* Add your global styles here */
</style>
الخطوة 6: تشغيل التطبيق
احفظ جميع التغييرات وابدأ خادم التطوير عن طريق تشغيل الأمر التالي في المحطة:
npm run serve
قم بزيارة http://localhost:8080
متصفح الويب الخاص بك لمشاهدة TodoList التطبيق أثناء العمل.
يوضح هذا المثال الوظائف الأساسية لملف
TodoList تطبيق باستخدام Vue.js. يمكن للمستخدمين رؤية قائمة بعناصر المهام ، وتمييزها على أنها مكتملة ، وحذفها ، وإضافة عناصر جديدة باستخدام النموذج المقدم. تتم إدارة حالة عناصر todo في TodoList المكون ، بينما يتم تقديم كل عنصر todo باستخدام TodoItem المكون.
يرجى ملاحظة أن هذا تطبيق مبسط ، ويمكنك تخصيص التطبيق وتحسينه بشكل أكبر بناءً على احتياجاتك الخاصة.