mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(PullRefresh): avoid Vue 2.6 event bubble issues (#5347)
This commit is contained in:
parent
6ed535c013
commit
6a20400699
@ -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>
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user