App.vue 410 B

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