Koha/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/ERMHome.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

54 lines
1.4 KiB
Vue

<template>
<Breadcrumb />
<div class="main container-fluid">
<div class="row">
<div class="col-sm-10 col-sm-push-2">
<main>
<router-view />
</main>
</div>
<div class="col-sm-2 col-sm-pull-10">
<aside>
<div id="navmenu">
<div id="navmenulist">
<h5>ERM</h5>
<ul>
<li>
<router-link
to="/cgi-bin/koha/erm/agreements"
>
<i class="fa fa-upload"></i>
Contact</router-link
>
</li>
</ul>
</div>
</div>
</aside>
</div>
</div>
</div>
</template>
<script>
import Breadcrumb from "./Breadcrumb.vue"
import { reactive, computed } from "vue"
export default {
data() {
return {
component: "agreement",
}
},
methods: {
switchComponent(component) {
this.component = component
},
},
components: {
Breadcrumb,
},
};
</script>