vue3关闭当前窗口的方法

1,498 阅读1分钟
const onClose = () => {
	window.opener = null;
	window.open('about:blank', '_top')?.close();
};