fix(PullRefresh): avoid Vue 2.6 event bubble issues (#5347)

This commit is contained in:
neverland 2019-12-22 09:38:17 +08:00 committed by GitHub
parent 6ed535c013
commit 6a20400699
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 9 deletions

View File

@ -26,7 +26,7 @@ export default {
<style lang="less">
.van-doc-demo-section {
box-sizing: border-box;
min-height: 100vh;
min-height: calc(100vh - 56px);
padding-bottom: 20px;
}
</style>

View File

@ -64,6 +64,7 @@ export default createComponent({
},
mounted() {
this.bindTouchEvent(this.$refs.track);
this.scrollEl = getScrollEventTarget(this.$el);
},
@ -162,14 +163,7 @@ export default createComponent({
return (
<div class={bem()}>
<div
class={bem('track')}
style={style}
onTouchstart={this.onTouchStart}
onTouchmove={this.onTouchMove}
onTouchend={this.onTouchEnd}
onTouchcancel={this.onTouchEnd}
>
<div ref="track" class={bem('track')} style={style}>
<div class={bem('head')}>{Status}</div>
{this.slots()}
</div>