当前位置:   article > 正文

vue 手机右滑返回

vue 手机右滑返回
1、安装vue-directive-touch组件
npm install vue-directive-touch --save
2、引入组件

在main.js中引入vue-directive-touch

  1. import touch from 'vue-directive-touch';
  2. Vue.use(touch);
3、在需要的页面使用
  1. <template>
  2. <div v-touch:right="backBefore">
  3. </div>
  4. </template>
  5. <script>
  6. export default {
  7. name: "index",
  8. data(){
  9. },
  10. methods:{
  11. backBefore (e,start,end){
  12. // 滑动距离
  13. ifend.X>start.X && end.X-start.X>30){
  14. //要跳转的页面
  15. }
  16. }
  17. }
  18. </script>

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号