2018-08-03 15:17:13 +02:00
|
|
|
import Photos from 'app/pages/photos.vue';
|
|
|
|
import Albums from 'app/pages/albums.vue';
|
2018-09-05 22:55:28 +02:00
|
|
|
import Import from 'app/pages/import.vue';
|
|
|
|
import Export from 'app/pages/export.vue';
|
2018-08-03 15:17:13 +02:00
|
|
|
import Settings from 'app/pages/settings.vue';
|
2018-07-27 17:31:39 +02:00
|
|
|
|
|
|
|
export default [
|
2018-08-03 15:17:13 +02:00
|
|
|
{ path: '/', redirect: '/photos' },
|
|
|
|
{ path: '/photos', component: Photos },
|
|
|
|
{ path: '/albums', component: Albums },
|
|
|
|
{ path: '/import', component: Import },
|
|
|
|
{ path: '/export', component: Export },
|
|
|
|
{ path: '/settings', component: Settings },
|
|
|
|
{ path: '*', redirect: '/photos' },
|
2018-07-27 17:31:39 +02:00
|
|
|
];
|