1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //import Login from '@/view/login'
- //import ServerSideLogin from '@/view/serverside/login'
- // import HTTP404 from '@/view/404'
- import Index from '@/view/resource/index'
- import Synch from '@/view/resource/resourceindex/synchronization.vue'
- import Library from '@/view/resource/resourceindex/library.vue'
- import Details from '@/view/resource/resourceindex/details.vue'
- import Videodetails from '@/view/resource/resourceindex/videodetails.vue'
- import Activity from '@/view/resource/activity'
- import ActivityGuide from '@/view/resource/activity_guide.vue'
- import ActivityShow from '@/view/resource/activity_show.vue'
- import ActivityRank from '@/view/resource/activity_rank.vue'
- import ActivityCertificate from '@/view/resource/activity_certificate.vue'
- import ActivityDetails from '@/view/resource/activity_details.vue'
- import HomePage from '@/view/resource/HomePage'
- import Teacher from '@/view/resource/Teacher'
- import TeacherZone from '@/view/resource/TeacherZone'
- import { resolve } from 'url';
- import ZonesHome from '../components/resource/ZonesHome.vue'
- export const routes = [
- { name: 'index', path: '/resource', component: Index },
- { name: 'synch', path: '/synch', component: Synch },
- { name: 'library', path: '/library', component: Library },
- { name: 'details', path: '/details', component: Details },
- { name: 'videodetails', path: '/videodetails', component: Videodetails },
- { name: 'activity', path: '/activity', component: Activity },
- { name: 'ActivityGuide', path: '/activityguide', component: ActivityGuide },
- { name: 'ActivityShow', path: '/activityshow', component: ActivityShow },
- { name: 'ActivityRank', path: '/activityrank', component: ActivityRank },
- { name: 'ActivityCertificate', path: '/activitycertificate', component: ActivityCertificate },
- { name: 'ActivityDetails', path: '/activitydetails', component: ActivityDetails },
- { name: 'HomePage', path: '/', component: HomePage },
- { name: 'Teacher', path: '/Teacher', component: Teacher },
- {
- name: 'TeacherZone', path: '/TeacherZone', component: TeacherZone,
- children: [
- { name: 'ZonesHome', path: 'ZonesHome', component: ZonesHome }
- ]
- },
- ]
|