feat(v2): NexusLayout, Sidebar, NavGroup, NavItem, Topbar, FlowBoard placeholder
This commit is contained in:
@@ -10,11 +10,25 @@ import SecurityView from './views/SecurityView.vue'
|
||||
import IncidentsView from './views/IncidentsView.vue'
|
||||
import CalendarView from './views/CalendarView.vue'
|
||||
import DashboardView from './views/DashboardView.vue'
|
||||
import NexusLayout from './layouts/NexusLayout.vue'
|
||||
import FlowBoard from './views/Dashboard/FlowBoard.vue'
|
||||
|
||||
const routes = [
|
||||
{ path: '/login', name: 'Login', component: LoginView, meta: { public: true } },
|
||||
{ path: '/', redirect: '/dashboard' },
|
||||
|
||||
// V1 Dashboard (altes Layout – bleibt erhalten)
|
||||
{ path: '/dashboard', name: 'Dashboard', component: DashboardView },
|
||||
|
||||
// V2 Dashboard (neues NexusLayout)
|
||||
{
|
||||
path: '/dashboard/v2',
|
||||
component: NexusLayout,
|
||||
children: [
|
||||
{ path: '', name: 'DashboardV2', component: FlowBoard },
|
||||
],
|
||||
},
|
||||
|
||||
{ path: '/memory', name: 'Memory', component: MemoryView },
|
||||
{ path: '/docs', name: 'Docs', component: DocsView },
|
||||
{ path: '/agents/:id', name: 'AgentDetail', component: AgentDetailView },
|
||||
|
||||
Reference in New Issue
Block a user