App.vue 433 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <style>
  7. #app {
  8. font-family: Avenir, Helvetica, Arial, sans-serif;
  9. -webkit-font-smoothing: antialiased;
  10. -moz-osx-font-smoothing: grayscale;
  11. text-align: center;
  12. color: #2c3e50;
  13. }
  14. body {
  15. margin: 0;
  16. padding: 0;
  17. }
  18. nav {
  19. padding: 30px;
  20. }
  21. nav a {
  22. font-weight: bold;
  23. color: #2c3e50;
  24. }
  25. nav a.router-link-exact-active {
  26. color: #42b983;
  27. }
  28. </style>