29 lines
437 B
TypeScript
29 lines
437 B
TypeScript
const routes = [
|
|
{
|
|
name: 'home',
|
|
path: '/',
|
|
redirect: '/material/home',
|
|
},
|
|
{
|
|
name: 'cabinet',
|
|
path: '/cabinet/*',
|
|
microApp: 'cabinet',
|
|
},
|
|
{
|
|
name: 'algorithm',
|
|
path: '/algorithm/*',
|
|
microApp: 'algorithm',
|
|
},
|
|
{
|
|
name: 'video',
|
|
path: '/video/*',
|
|
microApp: 'video',
|
|
},
|
|
{
|
|
name: '物料库',
|
|
path: '/material/*',
|
|
microApp: 'material',
|
|
},
|
|
];
|
|
export default routes;
|