fix(NumberKeyboard): slot content click event not work (#7193)

This commit is contained in:
neverland 2020-09-17 11:18:02 +08:00 committed by GitHub
parent 9896d1f49a
commit 38bde2a01f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,10 @@ export default createComponent({
onTouchEnd(event) {
if (this.active) {
// eliminate tap delay on safari
event.preventDefault();
// see: https://github.com/youzan/vant/issues/6836
if (!this.slots('default')) {
event.preventDefault();
}
this.active = false;
this.$emit('press', this.text, this.type);
}