19 lines
430 B
JavaScript
19 lines
430 B
JavaScript
export default { 0: [
|
|
|
|
{
|
|
path: '/dashboard/',
|
|
component: require('./vue/container/dashboard.vue').default
|
|
}, {
|
|
path: '/profile/',
|
|
component: require('./vue/container/profile.vue').default
|
|
}, {
|
|
path: '/inbox/',
|
|
component: require('./vue/container/inbox.vue').default
|
|
}, {
|
|
path: '/notifications/',
|
|
component: require('./vue/container/notifications.vue').default
|
|
}, {
|
|
path: '*',
|
|
redirect: '/dashboard/'
|
|
}
|
|
]} |