major update

This commit is contained in:
2024-10-17 17:01:42 -04:00
parent 9029993c49
commit c6f806f733
41 changed files with 899 additions and 254 deletions

View File

@@ -4,6 +4,8 @@ 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 = [
{
@@ -22,11 +24,16 @@ const customerRoutes = [
name: 'customerEdit',
component: CustomerEdit,
},
{
{
path: '/customer/:id',
name: 'customerProfile',
component: CustomerProfile,
},
{
path: '/tank/edit/:id',
name: 'TankEdit',
component: TankEdit,
},
]
export default customerRoutes