index.html 688 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <link rel="icon" type="image/svg" href="/logo.svg" />
  8. <title>Vue SFC Playground</title>
  9. <script>
  10. // process shim for old versions of @vue/compiler-sfc dependency
  11. window.process = { env: {} }
  12. if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
  13. document.documentElement.classList.add('dark')
  14. }
  15. </script>
  16. <script type="module" src="/src/main.ts"></script>
  17. </head>
  18. <body>
  19. <div id="app"></div>
  20. </body>
  21. </html>