1234567891011121314151617181920212223242526272829303132333435 |
- import { lazy, Suspense } from 'react'
- import { Navigate, Outlet } from 'react-router'
- import type { AppRouteObject } from '#/router'
- import { SvgIcon } from '@/components/icon'
- import { CircleLoading } from '@/components/loading'
- const HomePage = lazy(() => import('@/pages/dashboard'))
- const dashboard: AppRouteObject = {
- order: 1,
- path: 'dashboard',
- element: (
- <Suspense fallback={<CircleLoading />}>
- <Outlet />
- </Suspense>
- ),
- meta: {
- label: 'sys.menu.dashboard',
- icon: <SvgIcon icon='ic-analysis' className='ant-menu-item-icon' size='24' />,
- key: '/dashboard'
- },
- children: [
- {
- index: true,
- element: <Navigate to='workbench' replace />
- },
- {
- path: 'workbench',
- element: <HomePage />,
- meta: { label: 'sys.menu.workbench', key: '/dashboard/workbench' }
- }
- ]
- }
- export default dashboard
|