临时保存

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',
name: 'agent',
component: AppLayout,
children: [
{
path: '',
name: 'AgentMain',
component: () => import('../views/AgentView.vue'),
meta: { keepAlive: true }
},
{
path: ':agent_id',
name: 'AgentSinglePage',
component: () => import('../components/AgentSingleViewComponent.vue'),
meta: { keepAlive: false }
}
]
},
// {
// path: '/agent',
// name: 'agent',
// component: AppLayout,
// children: [
// {
// path: '',
// name: 'AgentMain',
// component: () => import('../views/AgentView.vue'),
// meta: { keepAlive: true }
// },
// {
// path: ':agent_id',
// name: 'AgentSinglePage',
// component: () => import('../components/AgentSingleViewComponent.vue'),
// meta: { keepAlive: false }
// }
// ]
// },
{
path: '/agent/:agent_id',
name: 'AgentSinglePage',
component: () => import('../views/AgentView.vue'),
component: () => import('../components/AgentChatComponent.vue'),
},
{
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