index.html 960 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <link rel="icon" href="/favicon.ico"/>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  7. <link rel="stylesheet" href="/plugins/element-plus/index.css"/>
  8. <link rel="stylesheet" href="/plugins/element-plus/theme-chalk/dark/css-vars.css"/>
  9. <link rel="stylesheet" href="/plugins/remixicon/remixicon.css"/>
  10. <link rel="stylesheet" href="/plugins/fonts/index.css"/>
  11. <link rel="stylesheet" href="/plugins/css/loading.css">
  12. </head>
  13. <body>
  14. <div id="app">
  15. <div class="loading">
  16. <div class="loading-wrap">
  17. <div class="loading-dots">
  18. <span class="dot dot-spin">
  19. <i></i><i></i><i></i><i></i>
  20. </span>
  21. </div>
  22. <div class="loading-title">系统加载中</div>
  23. </div>
  24. </div>
  25. </div>
  26. <script type="module" src="/src/main.js"></script>
  27. </body>
  28. </html>