blob: d41fd50c62274554ef3e0efac04c8378da08a20e [file] [log] [blame]
Yoshie Muranaka0e893f02020-02-18 13:39:45 -08001<template>
2 <b-button
Yoshie Muranakaeaa04802020-02-28 13:21:27 -08003 :aria-label="title"
Yoshie Muranaka0e893f02020-02-18 13:39:45 -08004 :title="title"
5 variant="link"
6 :disabled="!enabled"
7 @click="$emit('click:tableAction', value)"
8 >
9 <slot name="icon">
Yoshie Muranakaeaa04802020-02-28 13:21:27 -080010 {{ title }}
Yoshie Muranaka0e893f02020-02-18 13:39:45 -080011 </slot>
12 </b-button>
13</template>
14
15<script>
16export default {
17 name: 'TableRowAction',
18 props: {
19 value: {
20 type: String,
21 required: true
22 },
23 enabled: {
24 type: Boolean,
25 default: true
26 },
27 title: {
28 type: String,
29 default: null
30 }
31 }
32};
33</script>
34
35<style lang="scss" scoped>
Yoshie Muranaka8cc48662020-02-27 13:22:56 -080036.btn.btn-link {
Yoshie Muranaka0e893f02020-02-18 13:39:45 -080037 padding-top: 0;
38 padding-bottom: 0;
39}
40</style>