临时保存
This commit is contained in:
parent
e43f1cd618
commit
4c2f44ed6c
1175
web/src/components/AgentChatComponent.vue
Normal file
1175
web/src/components/AgentChatComponent.vue
Normal file
File diff suppressed because it is too large
Load Diff
@ -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',
|
||||||
|
|||||||
7
web/src/views/AgentSingleView.vue
Normal file
7
web/src/views/AgentSingleView.vue
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<h1>Agent Single View</h1>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
|
||||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user