1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import type { AppRouteRecordRaw, AppRouteModule } from '/@/router/types';
- import { DEFAULT_LAYOUT_COMPONENT, PAGE_NOT_FOUND_ROUTE, REDIRECT_ROUTE } from '../constant';
- import { genRouteModule } from '/@/utils/helper/routeHelper';
- import modules from 'globby!/@/router/routes/modules/**/*.@(ts)';
- const routeModuleList: AppRouteModule[] = [];
- Object.keys(modules).forEach((key) => {
- routeModuleList.push(modules[key]);
- });
- export const asyncRoutes = [
- REDIRECT_ROUTE,
- PAGE_NOT_FOUND_ROUTE,
- ...genRouteModule(routeModuleList),
- ];
- // 主框架根路由
- export const RootRoute: AppRouteRecordRaw = {
- path: '/',
- name: 'Root',
- component: DEFAULT_LAYOUT_COMPONENT,
- redirect: '/dashboard',
- meta: {
- title: 'Root',
- },
- children: [],
- };
- export const LoginRoute: AppRouteRecordRaw = {
- path: '/login',
- name: 'Login',
- component: () => import('/@/views/sys/login/Login.vue'),
- meta: {
- title: '登录',
- },
- };
- // 基础路由 不用权限
- export const basicRoutes = [LoginRoute, RootRoute];
|