mobile.html 1.2 KB

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, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" >
  6. <link rel="icon" href="<%= BASE_URL %>icon.ico">
  7. <!-- 使用 CDN 加速的 CSS 文件,配置在 vue.config.js 下 -->
  8. <% for (var i in htmlWebpackPlugin.options.cdn&&htmlWebpackPlugin.options.cdn.css) { %>
  9. <link href="<%= htmlWebpackPlugin.options.cdn.css[i] %>" rel="stylesheet">
  10. <% } %>
  11. <title><%= VUE_APP_TITLE %></title>
  12. <!-- 统计代码 帮助 D2Admin 作者大致统计使用此框架的用户数量 -->
  13. <script>
  14. var _hmt = _hmt || [];
  15. var hmid = "bc38887aa5588add05a38704342ad7e8";
  16. (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?" + hmid; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s);})();
  17. </script>
  18. </head>
  19. <body>
  20. <div id="app"></div>
  21. <!-- 使用 CDN 加速的 JS 文件,配置在 vue.config.js 下 -->
  22. <% for (var i in htmlWebpackPlugin.options.cdn&&htmlWebpackPlugin.options.cdn.js) { %>
  23. <script src="<%= htmlWebpackPlugin.options.cdn.js[i] %>"></script>
  24. <% } %>
  25. </body>
  26. </html>