123456789101112131415161718 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title></title>
- <link rel="stylesheet" href="../node_modules/typeface-roboto/index.css">
- <link rel="stylesheet" href="../node_modules/material-icons/iconfont/material-icons.css">
- </head>
- <body>
- <div id="root"></div>
- <script>
- import Vue from 'vue';
- import App from './app/app';
-
- new Vue(App).$mount('#root');
- </script>
- </body>
- </html>
|