美文网首页vue
vue判断手机移动端

vue判断手机移动端

作者: 一只正在成长的程序猿 | 来源:发表于2019-07-25 19:21 被阅读31次
//App.vue,判断是否为移动端
_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;
}

//App.vue
mounted() {
    if (this._isMobile()) {
      alert("手机端");
      this.$router.replace('/m_index');
    } else {
      alert("pc端");
      this.$router.replace('/pc_index');
    }
  }

参考链接:https://blog.csdn.net/qq_24744451/article/details/88538398

相关文章

网友评论

    本文标题:vue判断手机移动端

    本文链接:https://www.haomeiwen.com/subject/czskrctx.html