Programos kūrimas TodoList naudojant Vue.js

Čia yra išsamus žingsnis po žingsnio vadovas su konkrečiais kodo pavyzdžiais, kaip sukurti TodoList programą su Vue.js:

1 veiksmas: projekto nustatymas

Pradėkite kurdami naują Vue.js projektą naudodami Vue CLI. Atidarykite terminalą ir paleiskite šią komandą:

vue create todo-list-app

Taip bus sukurtas naujas katalogas todo-list-app su pagrindine projekto struktūra ir priklausomybėmis.

 

2 veiksmas: sukurkite TodoList Component

Aplanke src sukurkite naują failą pavadinimu TodoList.vue. Tai bus pagrindinis programos komponentas 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 veiksmas: sukurkite TodoItem Component

Aplanke src sukurkite naują failą pavadinimu TodoItem.vue. Tai bus antrinis komponentas, atsakingas už atskirų darbų elementų pateikimą.

: 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 veiksmas: atnaujinkite TodoList Component

.vue TodoList atnaujinkite šablono skyrių, kad TodoItem s būtų pateikta naudojant v-for direktyvą.

: 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 veiksmas: TodoList programos testavimas


Norėdami išbandyti TodoList programą, atidarykite failą „src/App.vue“ ir pakeiskite esamą turinį šiuo kodu:

<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 veiksmas: paleiskite programą


Išsaugokite visus pakeitimus ir paleiskite kūrimo serverį terminale paleisdami šią komandą:

npm run serve

Apsilankykite http://localhost:8080 savo žiniatinklio naršyklėje, kad pamatytumėte, TodoList kaip programa veikia.

Šis pavyzdys parodo pagrindines a

TodoList programa naudojant Vue.js. Vartotojai gali matyti darbų sąrašą, pažymėti juos kaip užbaigtus, ištrinti ir pridėti naujų elementų naudodami pateiktą formą. Užduočių elementų būsena tvarkoma komponente TodoList, o kiekvienas atskiras užduoties elementas pateikiamas naudojant komponentą TodoItem.

Atkreipkite dėmesį, kad tai yra supaprastintas diegimas ir jūs galite tinkinti ir toliau tobulinti programą pagal savo konkrečius poreikius.