2022-11-22 00:11:43 +08:00
|
|
|
const sampleRoutes = [
|
|
|
|
{
|
|
|
|
path: '',
|
|
|
|
name: 'samples-listing',
|
2023-02-20 13:27:53 +08:00
|
|
|
component: () => import('../views/sample/Samples.vue'),
|
2022-11-22 00:11:43 +08:00
|
|
|
meta: {
|
2023-04-10 09:29:10 +08:00
|
|
|
requiresAuth: true,
|
2022-11-22 00:11:43 +08:00
|
|
|
},
|
2023-04-10 09:29:10 +08:00
|
|
|
},
|
|
|
|
{
|
2022-11-22 00:11:43 +08:00
|
|
|
path: 'rejections',
|
|
|
|
name: 'reject-samples',
|
|
|
|
component: () => import('../views/sample/RejectSamples.vue'),
|
|
|
|
props: true,
|
|
|
|
meta: {
|
2023-04-10 09:29:10 +08:00
|
|
|
requiresAuth: true,
|
2022-11-22 00:11:43 +08:00
|
|
|
},
|
2023-04-10 09:29:10 +08:00
|
|
|
},
|
|
|
|
{
|
2023-01-04 04:12:12 +08:00
|
|
|
path: 'add-to-storage',
|
|
|
|
name: 'store-samples',
|
|
|
|
component: () => import('../views/sample/StoreSamples.vue'),
|
|
|
|
props: true,
|
|
|
|
meta: {
|
2023-04-10 09:29:10 +08:00
|
|
|
requiresAuth: true,
|
2023-01-04 04:12:12 +08:00
|
|
|
},
|
2023-04-10 09:29:10 +08:00
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2022-11-22 00:11:43 +08:00
|
|
|
export default sampleRoutes;
|