catchAdmin/public/admin.html

24 lines
560 B
HTML
Raw Normal View History

2022-12-05 23:01:12 +08:00
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="./favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2023-02-15 18:29:20 +08:00
<title><%- title %></title>
2022-12-05 23:01:12 +08:00
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="../resources/admin/app.ts"></script>
2023-03-11 17:19:15 +08:00
<script src="./static/config.js"></script>
2022-12-05 23:01:12 +08:00
</body>
</html>