This commit is contained in:
2025-03-10 10:50:06 +08:00
commit 81c79275aa
65 changed files with 3648 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Config Page</title>
</head>
<body>
<h1>配置完成后重启</h1>
<button id="restart">重启</button>
</body>
<script>
const restart = document.getElementById('restart');
restart.addEventListener('click', () => {
window.electron.ipcRenderer.invoke('relunch');
});
</script>
</html>