123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import type { RouteComponent } from 'vue-router';
- export const views: Record<
- PageRoute.LastDegreeRouteKey,
- RouteComponent | (() => Promise<{ default: RouteComponent }>)
- > = {
- 403: () => import('./_builtin/403/index.vue'),
- 404: () => import('./_builtin/404/index.vue'),
- 500: () => import('./_builtin/500/index.vue'),
- login: () => import('./_builtin/login/index.vue'),
- 'not-found': () => import('./_builtin/not-found/index.vue'),
- about: () => import('./about/index.vue'),
- archives_attendance: () => import('./archives/attendance/index.vue'),
- archives_other: () => import('./archives/other/index.vue'),
- archives_scores: () => import('./archives/scores/index.vue'),
- archives_students_component: () => import('./archives/students/component/index.vue'),
- archives_students: () => import('./archives/students/index.vue'),
- 'auth-demo_permission': () => import('./auth-demo/permission/index.vue'),
- 'auth-demo_super': () => import('./auth-demo/super/index.vue'),
- component_button: () => import('./component/button/index.vue'),
- component_card: () => import('./component/card/index.vue'),
- component_table: () => import('./component/table/index.vue'),
- crud_demo: () => import('./crud/demo/index.vue'),
- crud_doc: () => import('./crud/doc/index.vue'),
- crud_header_group: () => import('./crud/header_group/index.vue'),
- crud_source: () => import('./crud/source/index.vue'),
- dashboard_analysis: () => import('./dashboard/analysis/index.vue'),
- dashboard_workbench: () => import('./dashboard/workbench/index.vue'),
- document_naive: () => import('./document/naive/index.vue'),
- 'document_project-link': () => import('./document/project-link/index.vue'),
- document_project: () => import('./document/project/index.vue'),
- document_vite: () => import('./document/vite/index.vue'),
- document_vue: () => import('./document/vue/index.vue'),
- exception_403: () => import('./exception/403/index.vue'),
- exception_404: () => import('./exception/404/index.vue'),
- exception_500: () => import('./exception/500/index.vue'),
- 'function_tab-detail': () => import('./function/tab-detail/index.vue'),
- 'function_tab-multi-detail': () => import('./function/tab-multi-detail/index.vue'),
- function_tab: () => import('./function/tab/index.vue'),
- lesson_calendar: () => import('./lesson/calendar/index.vue'),
- lesson_checkin: () => import('./lesson/checkin/index.vue'),
- lesson_classroom: () => import('./lesson/classroom/index.vue'),
- lesson_group: () => import('./lesson/group/index.vue'),
- lesson_schedule: () => import('./lesson/schedule/index.vue'),
- lesson_score: () => import('./lesson/score/index.vue'),
- lesson_student: () => import('./lesson/student/index.vue'),
- management_attendance: () => import('./management/attendance/index.vue'),
- management_auth: () => import('./management/auth/index.vue'),
- management_role: () => import('./management/role/index.vue'),
- management_route: () => import('./management/route/index.vue'),
- management_sort: () => import('./management/sort/index.vue'),
- management_student: () => import('./management/student/index.vue'),
- management_user: () => import('./management/user/index.vue'),
- 'multi-menu_first_second-new_third': () => import('./multi-menu/first/second-new/third/index.vue'),
- 'multi-menu_first_second': () => import('./multi-menu/first/second/index.vue'),
- plugin_charts_antv: () => import('./plugin/charts/antv/index.vue'),
- plugin_charts_echarts: () => import('./plugin/charts/echarts/index.vue'),
- plugin_copy: () => import('./plugin/copy/index.vue'),
- plugin_editor_markdown: () => import('./plugin/editor/markdown/index.vue'),
- plugin_editor_quill: () => import('./plugin/editor/quill/index.vue'),
- plugin_icon: () => import('./plugin/icon/index.vue'),
- plugin_map: () => import('./plugin/map/index.vue'),
- plugin_print: () => import('./plugin/print/index.vue'),
- plugin_swiper: () => import('./plugin/swiper/index.vue'),
- plugin_video: () => import('./plugin/video/index.vue')
- };
|