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
+4 -1
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);
}