SkillsPage.vue 582 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div class="management-page">
  3. <div class="page-head">
  4. <div>
  5. <h1>Skills 技能</h1>
  6. <p>查看当前系统可用的 Skills 列表,供智能体配置时选择。</p>
  7. </div>
  8. </div>
  9. <SkillsPanel />
  10. </div>
  11. </template>
  12. <script setup lang="ts">
  13. import SkillsPanel from './components/SkillsPanel.vue'
  14. </script>
  15. <style scoped lang="less">
  16. .management-page {
  17. padding: 24px;
  18. min-height: 100%;
  19. box-sizing: border-box;
  20. }
  21. .page-head {
  22. margin-bottom: 18px;
  23. h1 {
  24. margin: 0;
  25. font-size: 28px;
  26. }
  27. p {
  28. margin: 6px 0 0;
  29. color: #6b7280;
  30. }
  31. }
  32. </style>