App.vue 842 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <div id="app">
  3. <h2>vue路由</h2>
  4. <!-- 跳转路由 to 跳转的路径 -->
  5. <router-link to="/home">首页</router-link>
  6. <br>
  7. <router-link to="/list">列表</router-link>
  8. <br>
  9. <router-link to="/new">新的</router-link>
  10. <div class="size">
  11. <!-- 放置页面/组件的指定位置 -->
  12. <router-view></router-view>
  13. </div>
  14. </div>
  15. </template>
  16. <style lang="scss">
  17. #app {
  18. font-family: Avenir, Helvetica, Arial, sans-serif;
  19. -webkit-font-smoothing: antialiased;
  20. -moz-osx-font-smoothing: grayscale;
  21. text-align: center;
  22. color: #2c3e50;
  23. }
  24. nav {
  25. padding: 30px;
  26. a {
  27. font-weight: bold;
  28. color: #2c3e50;
  29. &.router-link-exact-active {
  30. color: #42b983;
  31. }
  32. }
  33. }
  34. .size {
  35. width: 800px;
  36. height: 500px;
  37. border: 1px solid #f00;
  38. background: #42b983;
  39. }
  40. </style>