Vue路由跳转新窗口打开

           let Logistics= this.$router.resolve({
                path:'/Logistics',
                query:{
                    Amount:10
                }
            })
   
window.open(Logistics.href, '_blank','toolbar=yes, width=1300, height=900');
//打开的窗口可以设置大小和工具

猜你喜欢

转载自blog.csdn.net/weixin_41916005/article/details/84252325