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