| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <div class="management-page">
- <div class="page-head">
- <div>
- <h1>Skills 技能</h1>
- <p>查看当前系统可用的 Skills 列表,供智能体配置时选择。</p>
- </div>
- </div>
- <SkillsPanel />
- </div>
- </template>
- <script setup lang="ts">
- import SkillsPanel from './components/SkillsPanel.vue'
- </script>
- <style scoped lang="less">
- .management-page {
- padding: 24px;
- min-height: 100%;
- box-sizing: border-box;
- }
- .page-head {
- margin-bottom: 18px;
- h1 {
- margin: 0;
- font-size: 28px;
- }
- p {
- margin: 6px 0 0;
- color: #6b7280;
- }
- }
- </style>
|