2018-08-03 15:17:13 +02:00
|
|
|
import Photos from 'app/pages/photos.vue';
|
2019-04-15 11:06:49 +02:00
|
|
|
import PhotosEdit from 'app/pages/photosEdit.vue';
|
2018-08-03 15:17:13 +02:00
|
|
|
import Albums from 'app/pages/albums.vue';
|
2019-04-15 11:06:49 +02:00
|
|
|
import Albums2 from 'app/pages/albums2.vue';
|
|
|
|
import Import2 from 'app/pages/import2.vue';
|
|
|
|
import Import3 from 'app/pages/import3.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';
|
2019-04-15 11:06:49 +02:00
|
|
|
import Tags from 'app/pages/tags.vue';
|
2018-09-07 10:57:23 +02:00
|
|
|
import Todo from 'app/pages/todo.vue';
|
2018-07-27 17:31:39 +02:00
|
|
|
|
|
|
|
export default [
|
2018-09-26 13:56:13 +02:00
|
|
|
{ name: 'Home', path: '/', redirect: '/photos' },
|
|
|
|
{ name: 'Photos', path: '/photos', component: Photos },
|
2019-04-15 11:06:49 +02:00
|
|
|
{ name: 'PhotosEdit', path: '/photosEdit', component: PhotosEdit },
|
2018-09-26 13:56:13 +02:00
|
|
|
{ name: 'Filters', path: '/filters', component: Todo },
|
|
|
|
{ name: 'Calendar', path: '/calendar', component: Todo },
|
2019-04-15 11:06:49 +02:00
|
|
|
{ name: 'Tags', path: '/tags', component: Tags },
|
2018-09-26 13:56:13 +02:00
|
|
|
{ name: 'Bookmarks', path: '/bookmarks', component: Todo },
|
|
|
|
{ name: 'Favorites', path: '/favorites', component: Todo },
|
|
|
|
{ name: 'Places', path: '/places', component: Todo },
|
|
|
|
{ name: 'Albums', path: '/albums', component: Albums },
|
2019-04-26 02:22:53 +02:00
|
|
|
{ name: 'Albums2', path: '/albums2', component: Albums2 },
|
2018-09-26 13:56:13 +02:00
|
|
|
{ name: 'Import', path: '/import', component: Import },
|
2019-04-26 02:22:53 +02:00
|
|
|
{ name: 'Import2', path: '/import2', component: Import2 },
|
|
|
|
{ name: 'Import3', path: '/import3', component: Import3 },
|
2018-09-26 13:56:13 +02:00
|
|
|
{ name: 'Export', path: '/export', component: Export },
|
|
|
|
{ name: 'Settings', path: '/settings', component: Settings },
|
2018-08-03 15:17:13 +02:00
|
|
|
{ path: '*', redirect: '/photos' },
|
2018-07-27 17:31:39 +02:00
|
|
|
];
|