vue-判断设备移动端还是pc端

2019-08-22  本文已影响0人  _孙小胖
App.vue中

export default {
  name: 'App',
  methods: {
    // 判断移动端还是pc端
    <!--_isMobile方法-->
    _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)
      return flag;
    }
  },
  mounted: function() {
    if (this._isMobile()) {
      alert('手机端');
      <!--移动端首页路由-->
      this.$router.replace('/homeAndroid');
    }else {
      alert('pc端');
      <!--pc端首页路由-->
      this.$router.replace('/Home');
    }
  },
}
image
image
上一篇 下一篇

猜你喜欢

热点阅读