vue打开新页面

Posted duanzhenzhen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue打开新页面相关的知识,希望对你有一定的参考价值。

            let tempPage = window.open(‘_blank‘);//先打开一个空白页
                    this.$axios.post("/aliPay/aliTradePagePay",{
                        "orderId": this.orderId
                    }).then((response) => {
                        let res = response.data;
                        tempPage.location = res.data; //再设置空白页的地址
                    }).catch((err) =>{
                        console.log("支付失败",err);
                    })

 

以上是关于vue打开新页面的主要内容,如果未能解决你的问题,请参考以下文章

HTML代码片段

VsCode中Vue页面代码块快捷设置 代码模板

vue单页面应用打开新窗口显示跳转页面的方法

vue做的项目每次打开新页面不会显示页面顶部的解决办法

Vue点击按钮打开新页面,访问服务器文件地址

Vue路由的页面跳转打开新页面