View | Details | Raw Unified | Return to bug 33417
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Toolbar.vue (-1 / +21 lines)
Line 0 Link Here
0
- 
1
<template>
2
    <div id="toolbar" class="btn-toolbar">
3
        <router-link
4
            v-for="(option, index) in options"
5
            :key="index"
6
            :to="{ name: option.to }"
7
            class="btn btn-default"
8
            ><font-awesome-icon icon="plus" />
9
            {{ $__(`${option.button_title}`) }}</router-link
10
        >
11
    </div>
12
</template>
13
14
<script>
15
export default {
16
    props: {
17
        options: Array,
18
    },
19
    name: "Toolbar",
20
}
21
</script>

Return to bug 33417