let url = window.location.origin + “线上地址”;
let newWindow = window.open(url, “_blank”);
newWindow.focus(); // 将焦点设置为新窗口
vue中跨页面跳转
于 2024-03-04 10:24:28 首次发布
let url = window.location.origin + “线上地址”;
let newWindow = window.open(url, “_blank”);
newWindow.focus(); // 将焦点设置为新窗口