mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-21 23:37:55 +00:00
21 lines
356 B
Vue
21 lines
356 B
Vue
<template>
|
|
<button class="button-add" :disabled="disabled" v-on="$listeners">
|
|
<i class="button-add__icon iconoir-plus" />
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
/**
|
|
* If true the button will be disabled.
|
|
*/
|
|
disabled: {
|
|
required: false,
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
}
|
|
</script>
|