今天使用mint-ui的时候发现picker弹起之后进行滑动,后面的页面也会滑动。
故解决方法如下
html
<div @touchmove.native="stopTouch"></div>
js(vue.js)
methods: {
stopTouch (e) {
e.stopPropagation()
e.preventDefault()
}
}
今天使用mint-ui的时候发现picker弹起之后进行滑动,后面的页面也会滑动。
故解决方法如下
html
<div @touchmove.native="stopTouch"></div>
js(vue.js)
methods: {
stopTouch (e) {
e.stopPropagation()
e.preventDefault()
}
}