router.js 798 B

123456789101112131415161718192021222324252627
  1. import TargetScoreManage from "./views/TargetScoreManage.vue";
  2. import TargetReportManage from "./views/TargetReportManage.vue";
  3. import CourseDocumentManage from "./views/CourseDocumentManage.vue";
  4. import ProfessionalCertification from "./views/ProfessionalCertification.vue";
  5. export default [
  6. {
  7. path: "/course/target-score-manage",
  8. name: "TargetScoreManage",
  9. component: TargetScoreManage,
  10. },
  11. {
  12. path: "/course/target-report-manage",
  13. name: "CourseTargetReportManage",
  14. component: TargetReportManage,
  15. },
  16. {
  17. path: "/course/course-document-manage",
  18. name: "CourseDocumentManage",
  19. component: CourseDocumentManage,
  20. },
  21. {
  22. path: "/course/professional-certification",
  23. name: "ProfessionalCertification",
  24. component: ProfessionalCertification,
  25. },
  26. ];