构建 TodoList 应用程序 Vue.js

以下是详细的分步指南,其中包含用于构建 TodoList 应用程序的特定代码示例 Vue.js:

第 1 步:设置项目

首先使用 Vue CLI 创建一个新 Vue.js 项目。 打开终端并运行以下命令:

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 中,更新模板部分以 TodoItem 使用 v-for 指令渲染 s。

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. 用户可以查看待办事项列表、将其标记为已完成、删除它们以及使用提供的表单添加新项目。 待办事项的状态在 TodoList 组件中进行管理,而每个单独的待办事项都使用该 TodoItem 组件进行呈现。

请注意,这是一个简化的实现,您可以根据您的具体需求进一步自定义和增强应用程序。