123456789101112131415161718192021222324252627 |
- import TargetScoreManage from "./views/TargetScoreManage.vue";
- import TargetReportManage from "./views/TargetReportManage.vue";
- import CourseDocumentManage from "./views/CourseDocumentManage.vue";
- import ProfessionalCertification from "./views/ProfessionalCertification.vue";
- export default [
- {
- path: "/course/target-score-manage",
- name: "TargetScoreManage",
- component: TargetScoreManage,
- },
- {
- path: "/course/target-report-manage",
- name: "CourseTargetReportManage",
- component: TargetReportManage,
- },
- {
- path: "/course/course-document-manage",
- name: "CourseDocumentManage",
- component: CourseDocumentManage,
- },
- {
- path: "/course/professional-certification",
- name: "ProfessionalCertification",
- component: ProfessionalCertification,
- },
- ];
|