App.vue 543 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div id="app">
  3. <!-- 定义 和路由相关组件(简称 路由组件)的渲染位置 -->
  4. <!-- VueRouter 内置了 一个组件 router-view ,该组件类似于 动态组件component -->
  5. <router-view />
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. name: 'App',
  11. components: {},
  12. };
  13. </script>
  14. <style>
  15. #app {
  16. font-family: Avenir, Helvetica, Arial, sans-serif;
  17. -webkit-font-smoothing: antialiased;
  18. -moz-osx-font-smoothing: grayscale;
  19. text-align: center;
  20. color: #2c3e50;
  21. margin-top: 60px;
  22. }
  23. </style>