courseware.js 343 B

123456789101112131415161718
  1. import DEFAULT from '@/layouts/default';
  2. /**
  3. * 课件组件
  4. */
  5. const CoursewareModulePage = {
  6. path: '/courseware',
  7. component: DEFAULT,
  8. redirect: '/courseware/create',
  9. children: [
  10. {
  11. path: 'create',
  12. component: () => import('@/views/courseware/create/index.vue'),
  13. },
  14. ],
  15. };
  16. export default [CoursewareModulePage];