// 碳足迹计算 import type { Route } from '@/global' const Layout = () => import('@/layouts/index.vue') const routes: Route.recordRaw[] = [ { path: '/carbonCount', component: Layout, redirect: '/carbonCount/count', name: 'Dcount', meta: { title: '碳足迹计算', icon: 'ep:key', auth: '/count', }, children: [ { path: 'count', name: 'Count', component: () => import('@/views/count/index.vue'), meta: { title: '碳足迹计算', auth: '/count', sidebar: false, breadcrumb: true, activeMenu: '/carbonCount', }, }, ], }, ] export default routes