index.js 720 B

12345678910111213141516171819
  1. import Vue from 'vue';
  2. import Router from 'vue-router';
  3. Vue.use(Router);
  4. const router = new Router({
  5. mode: 'history',
  6. routes: [
  7. { path: '/', component: () => import('../views/Home.vue') },
  8. { path: '/login', component: () => import('../views/Auth/Login.vue') },
  9. { path: '/register', component: () => import('../views/Auth/Register.vue') },
  10. { path: '/dashboard', component: () => import('../views/Dashboard/Uploads.vue') },
  11. { path: '/dashboard/albums', component: () => import('../views/Dashboard/Albums.vue') },
  12. { path: '/dashboard/settings', component: () => import('../views/Dashboard/Settings.vue') },
  13. // { path: '*', component: () => import('../views/NotFound.vue') }
  14. ]
  15. });
  16. export default router;