App.vue 399 B

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