App.vue 377 B

12345678910111213141516171819202122232425
  1. <template>
  2. <router-view />
  3. </template>
  4. <script>
  5. export default {};
  6. </script>
  7. <style>
  8. #app {
  9. font-family: Avenir, Helvetica, Arial, sans-serif;
  10. -webkit-font-smoothing: antialiased;
  11. -moz-osx-font-smoothing: grayscale;
  12. /* text-align: center; */
  13. /* color: #2c3e50; */
  14. /* margin-top: 60px; */
  15. }
  16. html,
  17. body {
  18. height: 100vh;
  19. margin: 0;
  20. padding: 0;
  21. }
  22. </style>