cloudMenu/config/router.ts
ylj20011123 56f4ce81f7 update
2025-08-22 09:25:44 +08:00

31 lines
769 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",
},
{
path: '/InvoiceSearch/index',
name: '开票查询',
component: "@/pages/InvoiceSearch/index",
}
]
}
]