123456789101112131415161718192021 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <link rel="shortcut icon" type="image/x-icon" href="./favicon.ico">
- <title>酷炫KOL合作管理平台</title>
- <script>
- document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth / 1920) + "px";
- window.onresize = function () {
- document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth / 1920) + "px";
- }
- </script>
- </head>
- <body>
- <div id="app"></div>
- <!-- built files will be auto injected -->
- </body>
- </html>
|