cloudMenu/config/router.ts
2025-08-20 09:34:05 +08:00

26 lines
598 B
TypeScript

// 路由配置文件
export default [
{
path: '/',
routes: [
{
path: '/test/index',
name: '测试页面',
component: "@/pages/test/index",
},
{
path: '/Invoicing/index',
name: '开票管理',
component: "@/pages/Invoicing/index",
},
{
path: '/DigitalElectronics/index',
name: '开票管理',
component: "@/pages/DigitalElectronics/index",
}
]
}
]