App.vue 367 B

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