index.js 833 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. import Vue from 'vue'
  2. import VueRouter from 'vue-router'
  3. import Index from '../views/Index.vue'
  4. Vue.use(VueRouter)
  5. const routes = [{
  6. path: '/',
  7. name: 'home',
  8. redirect: '/index'
  9. },
  10. {
  11. path: '/index',
  12. name: 'index',
  13. component: Index
  14. },
  15. {
  16. path: '/about',
  17. name: 'About',
  18. component: () => import('../views/About.vue')
  19. },
  20. {
  21. path: '/point',
  22. name: 'point',
  23. component: () => import('../views/point.vue')
  24. },
  25. {
  26. path: '/FanStatusQueryExport',
  27. name: 'FanStatusQueryExport',
  28. component: () => import('../views/FanStatusQueryExport/FanStatusQueryExport.vue')
  29. },
  30. {
  31. path: '/gradeEvaluation',
  32. name: 'gradeEvaluation',
  33. component: () => import('../views/gradeEvaluation/GradeEvaluation.vue')
  34. }
  35. ]
  36. const router = new VueRouter({
  37. mode: 'hash',
  38. base: process.env.BASE_URL,
  39. routes
  40. })
  41. export default router