Koha/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsToolbar.vue
Jonathan Druart 8069a89d02
Bug 32030: Use router for current view and object_id
And improve breadcrumb

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:48 -03:00

13 lines
264 B
Vue

<template>
<router-link
to="/cgi-bin/koha/erm/agreements/add"
class="btn btn-default"
><font-awesome-icon icon="plus" /> New agreement</router-link
>
</template>
<script>
export default {
name: "AgreementsToolbar",
}
</script>