码迷,mamicode.com
首页 > 其他好文 > 详细

Vue:使用vue-cli实现 todolist,自动添加一行,自动删除一行(三)

时间:2020-07-19 23:57:30      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:splice   temp   from   submit   index   val   ret   sub   template   

src\TodiList.vue

<template>
  <div id="app">
    <input v-model="inputValue" />
    <button @click="handleSubmit">提交</button>
    <ul>
         <todo-item
        v-for="(item,index) of list"
        :key="index"
        :content="item"
        :index="index"
        @delete="handleDelete"
       >
       </todo-item>
    </ul>
  </div>
</template>

<script>
import TodoItem from ‘./components/TodoItem‘

export default {
  components:{
    ‘todo-item‘:TodoItem
  },

  data:function(){
      return {
          inputValue:‘‘,
          list:[]
      }
  },
  methods:{
      handleSubmit(){
          this.list.push(this.inputValue)
          this.inputValue = ‘‘
      },
    handleDelete(index){
      this.list.splice(index,1)
    }
  }
}
</script>

<style>

</style>

 

src\components\TodoItem.vue

<template>
  <li @click="handleDelete">{{content}}</li>
</template>
 
<script>
export default {
  props:[‘content‘,‘index‘],
  methods:{
    handleDelete(){
      this.$emit(‘delete‘,this.index)
    }
  }
}
</script>
 
<style scoped>
 
</style>

 

Vue:使用vue-cli实现 todolist,自动添加一行,自动删除一行(三)

标签:splice   temp   from   submit   index   val   ret   sub   template   

原文地址:https://www.cnblogs.com/wukong1688/p/13341312.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!