天波h5前端应用
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

33 lignes
549B

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