Commit abee7a3cd20ce71f7cedccbd0167a4b4ee4d683b
1 parent
272ecc1e
Fix #5645
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/components/input-number/input-number.vue
| ... | ... | @@ -292,7 +292,7 @@ |
| 292 | 292 | } |
| 293 | 293 | }, |
| 294 | 294 | change (event) { |
| 295 | - if (event.type == 'change') return; | |
| 295 | + if (event.type == 'change' && this.activeChange) return; | |
| 296 | 296 | |
| 297 | 297 | if (event.type == 'input' && !this.activeChange) return; |
| 298 | 298 | let val = event.target.value.trim(); | ... | ... |