From c4b074b7750e9e35ead86b66accaa3aa34a62484 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E5=BF=97=E5=86=9B?= <543024265@qq.com> Date: Mon, 14 Jul 2025 11:48:19 +0800 Subject: [PATCH] =?UTF-8?q?feat(agent):=20=E8=B0=83=E6=95=B4=E8=B7=AF?= =?UTF-8?q?=E7=94=B1=E9=85=8D=E7=BD=AE=EF=BC=8C=E4=B8=BAAgent=E4=B8=BB?= =?UTF-8?q?=E8=B7=AF=E7=94=B1=E6=B7=BB=E5=8A=A0=E9=BB=98=E8=AE=A4=E7=BB=84?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/routes/modules/agent.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/router/routes/modules/agent.ts b/src/router/routes/modules/agent.ts index c1d5db9..feef729 100644 --- a/src/router/routes/modules/agent.ts +++ b/src/router/routes/modules/agent.ts @@ -12,6 +12,7 @@ const COMPONENTS: AppRouteRecordRaw[] = [ path: '/agent', name: 'Agent', redirect: 'agent/listData', + component: () => import('@/views/Agent/Chat/index.vue'), meta: { locale: '扣子智能体', icon: IconRepository, @@ -20,10 +21,8 @@ const COMPONENTS: AppRouteRecordRaw[] = [ roles: ['*'], id: MENU_GROUP_IDS.PROPERTY_ID, }, - children: [ - - ], - } + children: [], + }, ]; export default COMPONENTS;