12345678910111213141516171819202122232425 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: 'app',
- };
- </script>
- <style>
- body,
- html,
- h3 {
- margin: 0;
- padding: 0;
- }
- #app {
- font-family: 'Avenir', Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- </style>
|