vue关闭当前页面

(1) 传统的JS关闭当前窗口

window.opener=null;
window.open('',self);
window.close();

(2) vue关闭当前窗口

window.opener = null;
window.open("about:blank", "_top").close()

你可能感兴趣的:(vue)