问答详情
源自:3-4 实现todo应用的业务逻辑

deleteTodo删除功能无效

<Item:todo="todo"v-for="todo in todos":key="todo.id"@del="deleteTodo"/>
deleteTodo(id){this.todos.splice(this.todos.findIndex(todo => todo.id===id), 1)}
<buttonclass="destory"@clcik="deleteTodo"></button>
methods:{deleteTodo(){this.$emit('del', this.todo.id)}}


提问者:慕粉125816 2018-09-28 14:33

个回答

  • 郁闷的西海
    2018-11-21 16:00:25

    click不是clcik。。

  • StranglethornVale
    2018-09-28 16:08:07

    @clcik 你基本语法都错了