mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 00:12:54 +08:00
30 lines
695 B
TypeScript
30 lines
695 B
TypeScript
const sampleRoutes = [
|
|
{
|
|
path: '',
|
|
name: 'samples-listing',
|
|
component: () => import('@/views/sample/SamplesListing.vue'),
|
|
meta: {
|
|
requiresAuth: true,
|
|
},
|
|
},
|
|
{
|
|
path: 'rejections',
|
|
name: 'reject-samples',
|
|
component: () => import('@/views/sample/RejectSamples.vue'),
|
|
props: true,
|
|
meta: {
|
|
requiresAuth: true,
|
|
},
|
|
},
|
|
{
|
|
path: 'add-to-storage',
|
|
name: 'store-samples',
|
|
component: () => import('@/views/sample/StoreSamples.vue'),
|
|
props: true,
|
|
meta: {
|
|
requiresAuth: true,
|
|
},
|
|
},
|
|
];
|
|
|
|
export default sampleRoutes;
|