| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="description" content="Metronic Vue Demo" />
- <link rel="icon" href="/favicon.ico">
- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700">
- <link rel="stylesheet" href="/splash-screen.css">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Vber</title>
- </head>
- <body class="page-loading">
- <!--begin::Theme mode setup on page load-->
- <script>
- let themeMode = "system";
- const STORAGE_KEY = `VberAdmin.1.0.1.vber`
- const storageStr = localStorage.getItem(STORAGE_KEY)
- if (storageStr) {
- const storage = JSON.parse(storageStr || "{}")
- themeMode = storage["VB_THEME_MODE_VALUE"] || "system";
- }
- if (themeMode === "system") {
- themeMode = window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light";
- }
- document.documentElement.setAttribute("data-bs-theme", themeMode);
- </script>
- <!--end::Theme mode setup on page load-->
- <div id="app"></div>
- <!--begin::Loading markup-->
- <div id="splash-screen" class="splash-screen">
- <img src="/media/logos/default-small.png" alt="VBER light logo" />
- <span>正在加载中 ...</span>
- </div>
- <!--end::Loading markup-->
- <script type="module" src="/src/main.ts"></script>
- </body>
- </html>
|