fix(NumberKeyboard): compatible with Vue 2.6 event bubble bug (#4632)

This commit is contained in:
neverland 2019-09-30 15:55:55 +08:00 committed by GitHub
parent 1c5463150c
commit 9d7fed4834
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,6 +40,9 @@ export default createComponent({
methods: {
onTouchStart(event) {
// compatible with Vue 2.6 event bubble bug
event.stopPropagation();
this.touchStart(event);
this.active = true;
},