vue 利用组件写待办事项

本文介绍如何使用 Vue.js 框架来创建一个功能完善的待办事项组件。通过实例化 Vue 实例,定义数据属性和方法,实现添加、删除和状态切换等操作,让你轻松掌握 Vue 组件化开发。
摘要由CSDN通过智能技术生成
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>TodoList</title>
</head>
<body>
  <div id="app">
    <todo-header>
      <template v-slot:title>
        <h1>TodoList</h1>
      </template>
      <template #subtitle>
        <h3>事情是做不完的!!!</h3>
      </template>
    </todo-header>

    <!-- <todo-input @custom="addTodoItem"></todo-input> -->
    <todo-input v-model="inputValue" :value="inputValue" @add="addTodoItem"></todo-input>

    <todo-list :todos="todos" @remove="deleteTodoItem"></todo-list>
  </div>

  <script src="https://cdn
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值