feat: batch creation

This commit is contained in:
Jannat Patel
2024-03-15 21:54:02 +05:30
parent 83a1b03bb7
commit 63bcbb6506
33 changed files with 1536 additions and 887 deletions

View File

@@ -84,8 +84,14 @@ const routes = [
},
{
path: '/batches/:batchName/edit',
name: 'CreateBatch',
component: () => import('@/pages/CreateBatch.vue'),
name: 'BatchCreation',
component: () => import('@/pages/BatchCreation.vue'),
props: true,
},
{
path: '/batches/:batchName/edit',
name: 'JobCreation',
component: () => import('@/pages/JobCreation.vue'),
props: true,
},
]