Merge pull request #5584 from susiwen8/fix#5577

Fix #5577 Slider change event duplication error
This commit is contained in:
Aresn 2019-04-09 14:27:14 +08:00 committed by GitHub
commit 997a85269f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -292,6 +292,7 @@
}
},
change (event) {
if (event.type == 'change') return;
if (event.type == 'input' && !this.activeChange) return;
let val = event.target.value.trim();