|
Lines 61-66
export const routes = [
Link Here
|
| 61 |
name: "AgreementsShow", |
61 |
name: "AgreementsShow", |
| 62 |
component: markRaw(AgreementsShow), |
62 |
component: markRaw(AgreementsShow), |
| 63 |
title: $__("Show agreement"), |
63 |
title: $__("Show agreement"), |
|
|
64 |
children: [ |
| 65 |
{ |
| 66 |
path: "items", |
| 67 |
is_navigation_item: false, |
| 68 |
children: [ |
| 69 |
{ |
| 70 |
path: "add", |
| 71 |
name: "TestChildTwo", |
| 72 |
component: markRaw( |
| 73 |
EHoldingsLocalTitlesFormAdd |
| 74 |
), |
| 75 |
title: $__("Add item to train"), |
| 76 |
}, |
| 77 |
{ |
| 78 |
path: "add/:item_ids", |
| 79 |
name: "TestChildThree", |
| 80 |
component: markRaw( |
| 81 |
EHoldingsLocalPackagesFormAdd |
| 82 |
), |
| 83 |
title: $__("Add items to train"), |
| 84 |
}, |
| 85 |
], |
| 86 |
}, |
| 87 |
], |
| 64 |
}, |
88 |
}, |
| 65 |
{ |
89 |
{ |
| 66 |
path: "add", |
90 |
path: "add", |
| 67 |
- |
|
|