| 123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <script>
- (function() {
- const noop = () => {};
- const mockHook = {
- on: noop, off: noop, emit: noop, set: noop,
- apps: [], _buffer: [], cleanupBuffer: noop,
- getInstanceDetails: noop, getComponentDetails: noop,
- getAppRecord: noop, getApps: () => []
- };
- if (!window.__VUE_DEVTOOLS_GLOBAL_HOOK__ || !window.__VUE_DEVTOOLS_GLOBAL_HOOK__.on) {
- window.__VUE_DEVTOOLS_GLOBAL_HOOK__ = mockHook;
- }
- })();
- </script>
- <link rel="icon" type="image/png" href="/favicon.png" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-
- <link rel="stylesheet" href="/fonts/fonts.css">
-
- <title>Radionica 3D</title>
- </head>
- <body>
- <div id="root"></div>
- <script type="module" src="/src/main.ts"></script>
- </body>
- </html>
|