mirror of
https://github.com/QYG2297248353/IYUUPlus-Windows.git
synced 2024-11-10 06:27:03 +08:00
19 lines
439 B
HTML
19 lines
439 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>运行日志</title>
|
|
</head>
|
|
<body>
|
|
<h1>IYUU 日志信息</h1>
|
|
<pre id="log-content"></pre>
|
|
|
|
<script>
|
|
window.electron.onDisplayLog((logContent) => {
|
|
document.getElementById('log-content').innerText = logContent;
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|