From 71555592bb952dd5666ee81c0d0327fa40d9edab Mon Sep 17 00:00:00 2001 From: neverland Date: Sat, 22 Dec 2018 08:10:50 +0800 Subject: [PATCH] [bugfix] Swipe: transitionend event bubble (#2355) --- packages/swipe/index.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/swipe/index.vue b/packages/swipe/index.vue index d27974a53..e9d3aa153 100644 --- a/packages/swipe/index.vue +++ b/packages/swipe/index.vue @@ -7,7 +7,7 @@ @touchmove="onTouchMove" @touchend="onTouchEnd" @touchcancel="onTouchEnd" - @transitionend="$emit('change', activeIndicator)" + @transitionend.stop="$emit('change', activeIndicator)" > @@ -15,6 +15,7 @@