index.js 578 B

123456789101112131415161718192021222324252627282930313233343536
  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. {
  7. path: '/',
  8. name: 'home',
  9. redirect: '/index'
  10. },
  11. {
  12. path: '/index',
  13. name: 'index',
  14. component: Index
  15. },
  16. {
  17. path: '/about',
  18. name: 'About',
  19. component: () => import('../views/About.vue')
  20. },
  21. {
  22. path: '/point',
  23. name: 'point',
  24. component: () => import('../views/point.vue')
  25. }
  26. ]
  27. const router = new VueRouter({
  28. mode: 'hash',
  29. base: process.env.BASE_URL,
  30. routes
  31. })
  32. export default router