Här är en detaljerad steg-för-steg-guide med specifika kodexempel för att bygga en TodoList applikation med Vue.js:
Steg 1: Konfigurera projektet
Börja med att skapa ett nytt Vue.js projekt med Vue CLI. Öppna din terminal och kör följande kommando:
vue create todo-list-app
Detta kommer att skapa en ny katalog som kallas todo-list-app
med den grundläggande projektstrukturen och beroenden.
Steg 2: Skapa TodoList Component
Inuti src
mappen skapar du en ny fil som heter TodoList.vue
. Detta kommer att vara huvudkomponenten för TodoList applikationen.
I 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>
Steg 3: Skapa TodoItem Component
Inuti src
mappen skapar du en ny fil som heter TodoItem.vue
. Detta kommer att vara en underordnad komponent som ansvarar för att rendera enskilda att göra-objekt.
I 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>
Steg 4: Uppdatera TodoList Component
Inuti TodoList.vue uppdaterar du mallavsnittet för att återge s TodoItem med v-for-direktivet.
I 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>
Steg 5: Testa TodoList applikationen
För att testa applikationen TodoList öppnar du filen "src/App.vue" och ersätter det befintliga innehållet med följande kod:
<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>
Steg 6: Kör applikationen
Spara alla ändringar och starta utvecklingsservern genom att köra följande kommando i terminalen:
npm run serve
Besök http://localhost:8080
i din webbläsare för att se TodoList programmet i funktion.
Det här exemplet visar den grundläggande funktionaliteten hos en
TodoList applikation med Vue.js. Användare kan se en lista över att göra-objekt, markera dem som slutförda, ta bort dem och lägga till nya objekt med hjälp av det medföljande formuläret. Tillståndet för att göra-objekten hanteras i komponenten TodoList, medan varje enskilt att göra-objekt renderas med hjälp av TodoItem komponenten.
Observera att detta är en förenklad implementering, och du kan anpassa och förbättra applikationen ytterligare baserat på dina specifika behov.