vue组件化的ToDoList


"en">

    "UTF-8">
    "viewport" content="width=device-width, initial-scale=1.0">
    "X-UA-Compatible" content="ie=edge">
    组件化toDoList
    


//需求:当在input框中输入留言后添加到显示区域 (即:#app中)所以需要双向数据绑定
  
"app"> type="text" v-model="title"> "(item,index) in arr" :key="index" :content="item" :index="index" @hand="remove">
复制代码

你可能感兴趣的:(vue组件化的ToDoList)