App.vue 436 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <Navbar />
  3. <router-view/>
  4. </template>
  5. <script setup>
  6. import Navbar from './components/Navbar.vue';
  7. </script>
  8. <style>
  9. #app {
  10. font-family: Avenir, Helvetica, Arial, sans-serif;
  11. -webkit-font-smoothing: antialiased;
  12. -moz-osx-font-smoothing: grayscale;
  13. text-align: center;
  14. color: #2c3e50;
  15. }
  16. /* 移除原有的 nav 样式,因为 Navbar 组件已经包含了样式 */
  17. </style>