Vue中在移动端如何判断设备是安卓还是ios

  //判断安卓和ios
            appSource() {
                const u = navigator.userAgent;
                const isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
                if (isiOS) {
                    return "ios";
                } else {
                    return "android";
                }
            },

 

posted @ 2021-04-14 11:42  小不点灬  阅读(1371)  评论(0编辑  收藏  举报