Skip to content

Commit

Permalink
bugfix: 第三方插件输入框失焦后未去拉取列表问题修复 #ignore
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 9992
  • Loading branch information
ywywZhou committed Jun 18, 2024
1 parent 2c37143 commit 2665913
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@
},
// 文本框失焦
handleInputBlur (e) {
this.$emit('blur')
this.$emit('blur', this.input.value)
this.input.focus = false
// 更新文本框结构,生成tag标签
this.updateInputHtml()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@
},
// 文本框失焦
handleInputBlur (e) {
this.$emit('blur')
this.$emit('blur', this.input.value)
this.input.focus = false
// 更新文本框结构,生成tag标签
this.updateInputHtml()
Expand Down

0 comments on commit 2665913

Please sign in to comment.