vue如何删除一条循环的数据


vue如何删除一条循环的数据##

1.如果是vue1.0这样写:

  1. {{todo.label}}
methods:{
    delete:function(index){
        this.todos.splice(index,1);
    }
}

2.如果是vue2.0这样写:

  1. {{todo.label}}
methods:{
    delete:function(index){
        this.todos.splice(index,1);
    }
}

你可能感兴趣的:(vue)