zoukankan      html  css  js  c++  java
  • vue 判断当前屏幕跳到移动端(两个分开的项目哦)

    vue 判断并跳转到移动端

    方法一:

    使用device
    我们把device.main.js文件放在static中,在项目index.html中引入

    方法二:我忘记我是从哪个大佬的文章看到的

    在APP.vue中:

      mounted() {
       let goUrl = this.isMobile();
        if (goUrl === 1) {
           //移动端地址
            location ='http://xxxx.com/mobile/#/';
    
        }
      },
      methods: {
        isMobile(){
            let flag = navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i);
            // localStorage.setItem('isiphone',flag)
            localStorage.setItem('ismobile',flag?1:0);
            let goUrl = flag ? 1 : 0;
            return goUrl;
        }
      }
    

    学习是一件需要坚持的事,加油哦

  • 相关阅读:
    To be a master II.
    To be a master.
    快速排序
    选择排序
    冒泡排序
    Myeclipse 2013 Pro 激活工具
    Java多线程
    设计模式:动态代理
    面向对象
    新安装mysql修改密码,远程访问授权
  • 原文地址:https://www.cnblogs.com/zljy/p/13138664.html
Copyright © 2011-2022 走看看