App.vue 455 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <style lang="scss">
  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. width: 100%;
  14. height: 100%;
  15. }
  16. #nav {
  17. padding: 30px;
  18. a {
  19. font-weight: bold;
  20. color: #2c3e50;
  21. &.router-link-exact-active {
  22. color: #42b983;
  23. }
  24. }
  25. }
  26. </style>