<template> | |
<b-button | |
:aria-label="title" | |
:title="title" | |
variant="link" | |
:disabled="!enabled" | |
@click="$emit('click:tableAction', value)" | |
> | |
<slot name="icon"> | |
{{ title }} | |
</slot> | |
</b-button> | |
</template> | |
<script> | |
export default { | |
name: 'TableRowAction', | |
props: { | |
value: { | |
type: String, | |
required: true | |
}, | |
enabled: { | |
type: Boolean, | |
default: true | |
}, | |
title: { | |
type: String, | |
default: null | |
} | |
} | |
}; | |
</script> | |
<style lang="scss" scoped> | |
.btn.btn-link { | |
padding-top: 0; | |
padding-bottom: 0; | |
} | |
</style> |