index.html 621 B

1234567891011121314151617181920212223242526
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>json-render vue example</title>
  7. <style>
  8. * {
  9. box-sizing: border-box;
  10. margin: 0;
  11. padding: 0;
  12. }
  13. body {
  14. font-family:
  15. -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  16. background: #f9fafb;
  17. color: #111827;
  18. min-height: 100vh;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div id="app"></div>
  24. <script type="module" src="/src/main.ts"></script>
  25. </body>
  26. </html>