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