这篇文章主要介绍vue2.0如何实现移动端滑动事件vue-touch,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
Vue-touch的使用
有时候我们不止需要有返回键,也要有手势滑动切换页面的功能时,这个时候vue-touch就派上用场了
API地址:
https://github.com/vuejs/vue-touch/tree/next
安装
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,具体内容如下所述:
https://github.com/vuejs/vue-touch/tree/next
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”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。