Koha/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/LicensesToolbar.vue
Jonathan Druart 5d6de5d437
Bug 32030: I18N rewrite - replace $t with $__
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:44:38 -03:00

14 lines
333 B
Vue

<template>
<div id="toolbar" class="btn-toolbar">
<router-link to="/cgi-bin/koha/erm/licenses/add" class="btn btn-default"
><font-awesome-icon icon="plus" />
{{ $__("New license") }}</router-link
>
</div>
</template>
<script>
export default {
name: "LicensesToolbar",
}
</script>