mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-21 07:22:53 +08:00
30 lines
754 B
TypeScript
30 lines
754 B
TypeScript
const wsRoutes = [
|
|
{
|
|
path: '',
|
|
name: 'worksheet-listing',
|
|
component: () => import('@/views/worksheet/WorkSheetListing.vue'),
|
|
meta: {
|
|
requiresAuth: true,
|
|
},
|
|
},
|
|
{
|
|
path: ':workSheetUid',
|
|
name: 'worksheet-single',
|
|
component: () => import('@/views/worksheet/_id/WorkSheet.vue'),
|
|
children: [
|
|
{
|
|
path: '',
|
|
name: 'worksheet-detail',
|
|
component: () => import('@/views/worksheet/_id/WorkSheetDetail.vue'),
|
|
meta: {
|
|
requiresAuth: true,
|
|
},
|
|
},
|
|
],
|
|
meta: {
|
|
requiresAuth: true,
|
|
},
|
|
},
|
|
];
|
|
|
|
export default wsRoutes;
|