feat: batch details

This commit is contained in:
Jannat Patel
2024-01-05 18:22:03 +05:30
parent 10cdd712d2
commit 3a33f047f5
15 changed files with 1215 additions and 662 deletions

View File

@@ -32,9 +32,16 @@ const routes = [
component: () => import('@/pages/Batches.vue'),
},
{
path: '/batches/:batchName',
path: '/batches/details/:batchName',
name: 'BatchDetail',
component: () => import('@/pages/BatchDetail.vue'),
props: true,
},
{
path: '/batches/:batchName',
name: 'Batch',
component: () => import('@/pages/Batch.vue'),
props: true,
},
]