mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
[bugfix] Toast: method warning when touchmove (#618)
This commit is contained in:
parent
d31d844828
commit
6df0d4bade
@ -14,6 +14,9 @@ create({
|
||||
methods: {
|
||||
onClick() {
|
||||
this.$emit('click');
|
||||
}
|
||||
},
|
||||
|
||||
// for prevent touchmove
|
||||
noop() {}
|
||||
}
|
||||
});
|
||||
|
@ -3,5 +3,5 @@
|
||||
custom-class="van-overlay"
|
||||
custom-style="z-index: {{ zIndex }}; {{ mask ? 'background-color: rgba(0, 0, 0, .7);' : '' }}; {{ customStyle }}"
|
||||
bind:tap="onClick"
|
||||
catch:touchmove
|
||||
catch:touchmove="noop"
|
||||
/>
|
||||
|
@ -29,6 +29,9 @@ create({
|
||||
this.setData({
|
||||
show: false
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
// for prevent touchmove
|
||||
noop() {}
|
||||
}
|
||||
});
|
||||
|
@ -10,7 +10,7 @@
|
||||
>
|
||||
<view
|
||||
class="van-toast van-toast--{{ type === 'text' ? 'text' : 'icon' }} van-toast--{{ position }}"
|
||||
catch:touchmove
|
||||
catch:touchmove="noop"
|
||||
>
|
||||
<!-- text only -->
|
||||
<view wx:if="{{ type === 'text' }}">{{ message }}</view>
|
||||
|
Loading…
x
Reference in New Issue
Block a user