Koha/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/Breadcrumb.vue
Jonathan Druart 2adaddeea4
Bug 32030: ERM - Refactoring
We want the whole erm.pl to be a Vue app \o/

Signed-off-by: Jonathan Field <jonathan.field@ptfs-europe.com>

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-11-08 09:43:43 -03:00

33 lines
724 B
Vue

<template>
<nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
<ol>
<li>
<a href="/cgi-bin/koha/mainpage.pl">Home</a>
</li>
<li>
<a href="/cgi-bin/koha/erm/erm.pl"
>Electronic resources management</a
>
</li>
<li>
<router-link to="/cgi-bin/koha/erm/agreements">
Agreements</router-link
>
</li>
</ol>
</nav>
</template>
<script>
export default {
methods: {
switchComponent(component) {
this.component = component
},
},
components: {
},
};
</script>