nova-admin/index.html
2022-09-27 12:48:55 +08:00

26 lines
693 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<link rel="stylesheet" href="/resource/loading.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><%= title %></title>
</head>
<body>
<div id="loading-container">
<div class="app-loading">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<span class="loading-title"><%= title %>管理系统</span>
</div>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>