App.vue 412 B

1234567891011121314151617181920212223242526272829
  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. nav {
  15. padding: 30px;
  16. a {
  17. font-weight: bold;
  18. color: #2c3e50;
  19. &.router-link-exact-active {
  20. color: #42b983;
  21. }
  22. }
  23. }
  24. </style>