index.html 723 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  7. <link rel="icon" href="<%= BASE_URL %>favicon.png">
  8. <title>智能散酒销售系统</title>
  9. <style>
  10. html, body {
  11. margin: 0;
  12. padding: 0;
  13. width: 100%;
  14. height: 100%;
  15. }
  16. #app {
  17. overflow: hidden;
  18. user-select: none;
  19. width: 100%;
  20. height: 100%;
  21. }
  22. * {
  23. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div id="app"></div>
  29. </body>
  30. </html>