欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue2.0移动端滑动事件vue-touch的实例代码

程序员文章站 2023-08-21 14:29:13
vue-touch的使用 有时候我们不止需要有返回键,也要有手势滑动切换页面的功能时,这个时候vue-touch就派上用场了 api地址: 安装 npm...

vue-touch的使用

有时候我们不止需要有返回键,也要有手势滑动切换页面的功能时,这个时候vue-touch就派上用场了

api地址:

安装

npm insall vue-touch@next --save
//main.js中引入:
import vuetouch from 'vue-touch'
vue.use(vuetouch, {name: 'v-touch'})

用法如下:

//html代码
<template>
 <v-touch v-on:swipeleft="swiperleft" v-on:swiperight="swiperright" class="wrapper">
   <div class="menu-container" ref="menucontainer">  
  <!-- 这个是内容 --> 
   </div>
 </v-touch>
</template>

export default {
 name: 'queue',
 data () {
  return {
  }
 },
 methods: {
  swiperleft: function () {
   this.$router.push({'path':'/queuehistory'});
  },
  swiperright: function () {
   this.$router.push({'path':'/home'});
  }
 }
}

下面给大家介绍下vue2.0移动端滑动事件vue-touch,具体内容如下所述:

cnpm install vue-touch@next

var vuetouch = require('vue-touch')
vue.use(vuetouch, {name: 'v-touch'})

//左划   默认渲染为div  data为参数
<v-touch v-on:swipeleft="onswipeleft(data)">swipe me!</v-touch>
//点击  渲染为一个a标签
<v-touch tag="a" v-on:tap="ontap">tap me!</v-touch>
//点击  渲染为p标签
<v-touch tag="p" v-on:tap="ontap">tap me!</v-touch>

总结

以上所述是小编给大家介绍的vue2.0移动端滑动事件vue-touch的实例代码,希望对大家有所帮助