@@ -, +, @@ E-resource management > Agreements > Show agreement > > Add item to train E-resource management > Agreements > Show agreement > Add item to train --- .../intranet-tmpl/prog/js/vue/routes/erm.js | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/js/vue/routes/erm.js +++ a/koha-tmpl/intranet-tmpl/prog/js/vue/routes/erm.js @@ -61,6 +61,30 @@ export const routes = [ name: "AgreementsShow", component: markRaw(AgreementsShow), title: $__("Show agreement"), + children: [ + { + path: "items", + is_navigation_item: false, + children: [ + { + path: "add", + name: "TestChildTwo", + component: markRaw( + EHoldingsLocalTitlesFormAdd + ), + title: $__("Add item to train"), + }, + { + path: "add/:item_ids", + name: "TestChildThree", + component: markRaw( + EHoldingsLocalPackagesFormAdd + ), + title: $__("Add items to train"), + }, + ], + }, + ], }, { path: "add", --