App.vue 329 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'app',
  9. };
  10. </script>
  11. <style>
  12. body,
  13. html,
  14. h3 {
  15. margin: 0;
  16. padding: 0;
  17. }
  18. #app {
  19. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  20. -webkit-font-smoothing: antialiased;
  21. -moz-osx-font-smoothing: grayscale;
  22. }
  23. </style>