App.vue 761 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div id="app">
  3. <a-layout style="min-height: 100vh">
  4. <a-layout-header style="background: #001529; padding: 0 50px">
  5. <div style="color: white; font-size: 24px; font-weight: bold">
  6. 🌍 HelloAgents智能旅行助手
  7. </div>
  8. </a-layout-header>
  9. <a-layout-content style="padding: 24px">
  10. <router-view />
  11. </a-layout-content>
  12. <a-layout-footer style="text-align: center">
  13. HelloAgents智能旅行助手 ©2025 基于HelloAgents框架
  14. </a-layout-footer>
  15. </a-layout>
  16. </div>
  17. </template>
  18. <script setup lang="ts">
  19. </script>
  20. <style>
  21. #app {
  22. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
  23. 'Noto Sans', sans-serif;
  24. }
  25. </style>