影者东升 发表于 2021-7-14 09:08:20

vue-touch监听手指左滑右滑事件

1、下载
npm install vue-touch@next --save2、main.js中引入
import VueTouch from 'vue-touch'
Vue.use(VueTouch, { name: 'v-touch' })3、使用,tag渲染成什么标签,默认渲染成div。click事件要改为tap事件
    <v-touch tag='p' @swipeleft="swiperleft" @swiperight="swiperright" @tap='handleClick'>
      1234565
    </v-touch>    swiperleft: function () {
      console.log('左划')
    },
    swiperright: function () {
      console.log('右滑')
    },
    handleClick() {
      console.log('点击')
    }


文档来源:51CTO技术博客https://blog.51cto.com/u_15301829/3068387
页: [1]
查看完整版本: vue-touch监听手指左滑右滑事件