前言
在小程序编写过程当中使用使用vant weapp的popup组件作小程序的弹出层,触屏致使底层页面跟着滑动。web
解决方法
使用touch事件阻止属性,@touchmove.stop.prevent指向空事件
van-popup(:show="popupShow":z-index="999"position="bottom"@close="popupClose"@touchmove.stop.prevent="moveHandle")methods: {
moveHandle () {
}}