App.vue 416 B

123456789101112131415161718192021222324252627282930313233343536
  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>