fix todoList编辑值为空时有bug

This commit is contained in:
zhoujiaxing 2020-12-04 17:49:09 +08:00
parent 33a93a12b4
commit de3a28fe47
1 changed files with 2 additions and 3 deletions

View File

@ -61,9 +61,8 @@ export default {
const value = e.target.value.trim()
const { todo } = this
if (!value) {
this.deleteTodo({
todo
})
this.deleteTodo(todo)
this.editing = false
} else if (this.editing) {
this.editTodo({
todo,