mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(NumberKeyboard): slot content click event not work (#7193)
This commit is contained in:
parent
9896d1f49a
commit
38bde2a01f
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user