ptut-vhost/webpack/routes/ue.js

16 lines
279 B
JavaScript
Raw Permalink Normal View History

2018-03-05 18:39:56 +00:00
export default{ 0: [
{
name: 'view',
2018-03-05 18:39:56 +00:00
path: '/ue/view/',
component: require('../component/ue/view.vue').default
}, {
name: 'manage',
path: '/ue/manage/:code',
component: require('../component/ue/manage.vue').default
2018-03-05 18:39:56 +00:00
}, {
path: '*',
redirect: '/ue/view/'
}
]}