import type { Route } from '@/global' const Layout = () => import('@/layouts/index.vue') const routes: Route.recordRaw[] = [ { path: '/dashboard', component: Layout, redirect: '/dashboard/index', name: 'Dashboard', meta: { title: '首页', icon: 'ep:key', auth: '/dashboard', }, children: [ { path: 'index', name: 'DashboardIndex', component: () => import('@/views/dashboard/index.vue'), meta: { title: '首页', auth: '/dashboard', sidebar: false, breadcrumb: true, activeMenu: '/dashboard', }, }, ], }, ] export default routes