index.html 495 B

123456789101112131415161718192021222324
  1. <html>
  2. <head>
  3. <title>PicoCrank</title>
  4. <link rel = "shortcut icon" href = "logo.png" type = "image/png" />
  5. <meta name = "viewport" content = "width=device-width, initial-scale=1.0, user-scalable=no" />
  6. </head>
  7. <body>
  8. <slot id = "app" />
  9. </body>
  10. <script type = "module">
  11. import { createApp } from 'vue';
  12. import App from './vue/views/App.vue';
  13. import router from './router.js';
  14. const app = createApp(App)
  15. app.use(router)
  16. app.mount('#app');
  17. </script>
  18. </html>