TodoList.vue

  <template>
    <div>
      <div>
        <input v-model="inputValue">
        <button @click="handleSubmit">提交</button>
      </div>
      <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>

TodoItem.vue

    <template>
        <li  @click="handleDelete">{{content}}</li>
    </template>
    <script>
	    export default {
	    //接收传入的数据
	      props:['content','index'],
	      methods:{
	        handleDelete(){
	    //触发自定义函
	          this.$emit('delete',this.index)
	        }
	      }
    }
    </script>
Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐