24 lines
363 B
TypeScript
24 lines
363 B
TypeScript
const routes = [
|
|
{
|
|
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;
|