Skip to content

Commit

Permalink
fix: 🐛 修复MessageBox设置为prompt时输入框绑定值异常的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Moonofweisheng committed Jul 22, 2024
1 parent 5ad64fd commit 140d960
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ function resetErr(val: boolean) {
showErr.value = false
}
}
function inputValChange(value: string | number) {
function inputValChange({ value }: { value: string | number }) {
if (value === '') {
showErr.value = false
return
Expand Down

0 comments on commit 140d960

Please sign in to comment.