deletetodo(id){
this.todos.splice((this.todos.findIndex((todo)=>{
return todo.id ===id
})),1)
},
data中的todos数组的每一项todo