fix:enter事件会导致blur事件触发,触发了两次doneEdit

This commit is contained in:
zhoujiaxing 2020-12-04 20:57:27 +08:00
parent 4e00cb8276
commit b9d12ce5a8
1 changed files with 3 additions and 0 deletions

View File

@ -58,6 +58,9 @@ export default {
this.$emit('toggleTodo', todo)
},
doneEdit(e) {
if (!this.editing) {
return
}
const value = e.target.value.trim()
const { todo } = this
if (!value) {