vue 自动识别PC、移动端,并跳转到对应页面

方法一:

index.html中head添加

<script type="text/javascript">
        if(/Android|webOS| iPhone | iPad | iPod |BlackBerry|opera mini|opera mobile|appleWebkit.*mobile|mobile/i.test(
               navigator.userAgent)) {
                 window.location.href = "域名地址/mobile/index.html";
                }
    </script>

方法二:

app.vuehead中添加

<!--自动识别PC、移动-->
    <script src="static/js/uaredirect.js" type="text/javascript"></script>
    <!--设置移动端地址-->
        <script type="text/javascript">uaredirect("https://chaopengjiankang.com/m/index.html");</script>

static文件夹中创建js文件夹,添加以下内容

function uaredirect(murl){
try {
if(document.getElementById("bdmark") != null){
return;
}
var urlhash = window.location.hash;
if (!urlhash.match("fromapp")){
if ((navigator.userAgent.match(/(iPhone|iPod|Android|ios|iPad)/i))) {
location.replace(murl);
}
}
} catch(err){}
}
原文地址:https://www.cnblogs.com/duanzhenzhen/p/10672631.html