index.js 1009 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. import Vue from 'vue'
  2. import Router from 'vue-router'
  3. Vue.use(Router)
  4. import shop from './modules/shop'
  5. /* Layout */
  6. import Layout from '@/layout'
  7. /* Router Modules */
  8. export const constantRoutes = [
  9. {
  10. path: '/login',
  11. component: () => import('@/views/login/index'),
  12. hidden: true,
  13. },
  14. {
  15. path: '/404',
  16. component: () => import('@/views/404'),
  17. hidden: true,
  18. },
  19. {
  20. hidden: true,
  21. path: '/',
  22. redirect: '/shop/shop-manage/site/au',
  23. },
  24. { path: '*', redirect: '/404', hidden: true },
  25. ]
  26. export const asyncRoutes = [shop]
  27. const createRouter = () =>
  28. new Router({
  29. // mode: 'hash', // require service support
  30. scrollBehavior: () => ({ y: 0 }),
  31. routes: [...constantRoutes, ...asyncRoutes],
  32. })
  33. const router = createRouter()
  34. // Detail see: https://github.com/vuejs/vue-router/issues/1234#issuecomment-357941465
  35. export function resetRouter() {
  36. const newRouter = createRouter()
  37. router.matcher = newRouter.matcher // reset router
  38. }
  39. export default router