mainOut.ts 546 B

12345678910111213141516171819202122
  1. /**
  2. The routing of this file will not show the layout.
  3. It is an independent new page.
  4. the contents of the file still need to log in to access
  5. */
  6. import type { AppRouteModule } from '/@/router/types';
  7. // test
  8. // http:ip:port/main-out
  9. export const mainOutRoutes: AppRouteModule[] = [
  10. {
  11. path: '/main-out',
  12. name: 'MainOut',
  13. component: () => import('/@/views/demo/main-out/index.vue'),
  14. meta: {
  15. title: 'MainOut',
  16. ignoreAuth: true,
  17. },
  18. },
  19. ];
  20. export const mainOutRouteNames = mainOutRoutes.map((item) => item.name);