// 首页 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: 'icon-bench', // auth: '/alarm', }, children: [ { path: 'index', name: 'index', component: () => import('@/views/dashboard/index.vue'), meta: { title: '首页', // auth: '/alarm', sidebar: false, breadcrumb: true, activeMenu: '/dashboard', }, }, ], }, ] export default routes