NewsletterCreator / src / router / routes.js
routes.js
Raw
import IndexPage from 'pages/IndexPage.vue'
import Editor from 'pages/NewsletterEditor.vue'

const routes = [
  {
    path: '/',
    component: () => import('layouts/MainLayout.vue'),
    children: [
      { path: '', component: IndexPage },
      { path: '/editor', component: Editor }
    ]
  },

  // Always leave this as last one,
  // but you can also remove it
  {
    path: '/:catchAll(.*)*',
    component: () => import('pages/ErrorNotFound.vue')
  }
]

export default routes