index.html 497 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title></title>
  6. <link rel="stylesheet" href="../node_modules/typeface-roboto/index.css">
  7. <link rel="stylesheet" href="../node_modules/material-icons/iconfont/material-icons.css">
  8. </head>
  9. <body>
  10. <div id="root"></div>
  11. <script>
  12. import Vue from 'vue';
  13. import App from './app/app';
  14. new Vue(App).$mount('#root');
  15. </script>
  16. </body>
  17. </html>