index.html 931 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <script>
  6. (function() {
  7. const noop = () => {};
  8. const mockHook = {
  9. on: noop, off: noop, emit: noop, set: noop,
  10. apps: [], _buffer: [], cleanupBuffer: noop,
  11. getInstanceDetails: noop, getComponentDetails: noop,
  12. getAppRecord: noop, getApps: () => []
  13. };
  14. if (!window.__VUE_DEVTOOLS_GLOBAL_HOOK__ || !window.__VUE_DEVTOOLS_GLOBAL_HOOK__.on) {
  15. window.__VUE_DEVTOOLS_GLOBAL_HOOK__ = mockHook;
  16. }
  17. })();
  18. </script>
  19. <link rel="icon" type="image/png" href="/favicon.png" />
  20. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  21. <link rel="stylesheet" href="/fonts/fonts.css">
  22. <title>Radionica 3D</title>
  23. </head>
  24. <body>
  25. <div id="root"></div>
  26. <script type="module" src="/src/main.ts"></script>
  27. </body>
  28. </html>