1234567891011121314151617181920212223242526 |
- <!doctype html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8" />
- <link rel="icon" type="image/svg+xml" href="/vite.svg" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>数字教师</title>
- <script src="https://unpkg.com/vconsole@latest/dist/vconsole.min.js"></script>
- <script>
- {
- if (location.href.includes('debug')) {
- var vConsole = new window.VConsole();
- }
- }
- </script>
- </head>
- <body class="m-0 p-0">
- <div id="app" class="h-screen w-screen bg-hex-22252f flex flex-col text-white overflow-y-scroll"></div>
- <script src="/config.js"></script>
- <script type="module" src="/src/main.ts"></script>
- </body>
- </html>
|