index.template.html 598 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <meta name="apple-mobile-web-app-capable" content="yes">
  6. <meta name="format-detection" content="telephone=no">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  8. <meta content="telephone=no" name="format-detection">
  9. <title>转 WEB DEMO</title>
  10. <style>
  11. html, body, #app {height: 100%;}
  12. </style>
  13. </head>
  14. <body>
  15. <div id="app">
  16. <router-view></router-view>
  17. <script src="./index.js"></script>
  18. </div>
  19. </body>
  20. </html>