index.html 538 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <link rel="icon" type="image/svg+xml" href="/vite.svg"/>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  7. <title>Vite + Vue + TS</title>
  8. <style>
  9. #app {
  10. position: relative;
  11. margin: auto;
  12. height: 100%;
  13. //max-width: 1080px;
  14. overflow: auto;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <div id="app"></div>
  20. <script type="module" src="/src/main.ts"></script>
  21. </body>
  22. </html>