https://blog.csdn.net/qq_43459224/article/details/103242622
原地址:
https://segmentfault.com/a/1190000019838103?utm_source=tag-newest

由于需要监听手指的左右滑动事件,所以用到了v-touch这个插件。

1:npm安装
npm install vue-touch@next --save
//main.js中引入:
import VueTouch from ‘vue-touch’
Vue.use(VueTouch, {name: ‘v-touch’})

2:用法如下:
//html代码




3:js
export default {
name: ‘Queue’,
data () {
return {

}

},
methods: {
swiperleft: function () {
console.log(“左划”)
},
swiperright: function () {
console.log(“右滑”)
}
}

}

Logo

前往低代码交流专区

更多推荐