赞
踩
npm install vue-directive-touch --save
在main.js中引入vue-directive-touch
- import touch from 'vue-directive-touch';
- Vue.use(touch);
- <template>
- <div v-touch:right="backBefore">
-
- </div>
- </template>
-
- <script>
- export default {
- name: "index",
- data(){
-
- },
- methods:{
- backBefore (e,start,end){
- // 滑动距离
- if(end.X>start.X && end.X-start.X>30){
- //要跳转的页面
-
- }
-
- }
-
- }
- </script>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。