App.vue 587 B

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