临时保存

This commit is contained in:
Wenjie Zhang 2025-03-31 22:32:19 +08:00
parent e43f1cd618
commit 4c2f44ed6c
5 changed files with 1204 additions and 1190 deletions

File diff suppressed because it is too large Load Diff

View File

@ -31,29 +31,29 @@ const router = createRouter({
} }
] ]
}, },
{ // {
path: '/agent', // path: '/agent',
name: 'agent', // name: 'agent',
component: AppLayout, // component: AppLayout,
children: [ // children: [
{ // {
path: '', // path: '',
name: 'AgentMain', // name: 'AgentMain',
component: () => import('../views/AgentView.vue'), // component: () => import('../views/AgentView.vue'),
meta: { keepAlive: true } // meta: { keepAlive: true }
}, // },
{ // {
path: ':agent_id', // path: ':agent_id',
name: 'AgentSinglePage', // name: 'AgentSinglePage',
component: () => import('../components/AgentSingleViewComponent.vue'), // component: () => import('../components/AgentSingleViewComponent.vue'),
meta: { keepAlive: false } // meta: { keepAlive: false }
} // }
] // ]
}, // },
{ {
path: '/agent/:agent_id', path: '/agent/:agent_id',
name: 'AgentSinglePage', name: 'AgentSinglePage',
component: () => import('../views/AgentView.vue'), component: () => import('../components/AgentChatComponent.vue'),
}, },
{ {
path: '/graph', path: '/graph',

View File

@ -0,0 +1,7 @@
<template>
<div>
<h1>Agent Single View</h1>
</div>
</template>

File diff suppressed because it is too large Load Diff