Files
eamco_office_frontend/src/pages/customer/routes.ts
2024-10-17 17:01:42 -04:00

41 lines
872 B
TypeScript
Executable File

import CustomerHome from '../customer/home.vue';
import CustomerCreate from '../customer/create.vue';
import CustomerEdit from "../customer/edit.vue";
import CustomerProfile from "./profile/home.vue"
import TankEdit from "./tank/edit.vue"
const customerRoutes = [
{
path: '/customer',
name: 'customer',
component: CustomerHome,
},
{
path: '/customer/create',
name: 'customerCreate',
component: CustomerCreate,
},
{
path: '/customer/edit/:id',
name: 'customerEdit',
component: CustomerEdit,
},
{
path: '/customer/:id',
name: 'customerProfile',
component: CustomerProfile,
},
{
path: '/tank/edit/:id',
name: 'TankEdit',
component: TankEdit,
},
]
export default customerRoutes
//sourceMappingURL=index.ts.map