Koha/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsToolbar.vue
Jonathan Druart 8c32f186d5
Bug 32030: ERM - Remove BootstrapVue3
We are lacking behind, Koha is using Bootstrap 3.5 and BootstrapVue3 is
using Bootstrap 5. It's a shame, it would be much easier to use
BootstrapVue!

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

12 lines
260 B
Vue

<template>
<a class="btn btn-default" @click="$emit('switch-view', 'add-form')"
><font-awesome-icon icon="plus" /> New agreement</a
>
</template>
<script>
export default {
name: "AgreementsToolbar",
emits: ['switch-view'],
}
</script>