routes.js 372 B

12345678910111213141516171819
  1. const routes = [
  2. {
  3. path: '/',
  4. component: () => import('layouts/MainLayout.vue'),
  5. children: [
  6. { path: '', component: () => import('pages/IndexPage.vue') }
  7. ]
  8. },
  9. // Always leave this as last one,
  10. // but you can also remove it
  11. {
  12. path: '/:catchAll(.*)*',
  13. component: () => import('pages/ErrorNotFound.vue')
  14. }
  15. ]
  16. export default routes