722f540b03
- Add email collect hook on creating conversation - Merge contact if it already exist
54 lines
900 B
Vue
54 lines
900 B
Vue
<template>
|
|
<button
|
|
type="submit"
|
|
:disabled="disabled"
|
|
:class="computedClass"
|
|
@click="onClick"
|
|
>
|
|
<i v-if="!!iconClass" :class="iconClass" class="icon" />
|
|
<span>{{ buttonText }}</span>
|
|
<spinner v-if="loading" />
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
import Spinner from 'shared/components/Spinner';
|
|
|
|
export default {
|
|
components: {
|
|
Spinner,
|
|
},
|
|
props: {
|
|
disabled: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
loading: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
buttonText: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
buttonClass: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
iconClass: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
},
|
|
computed: {
|
|
computedClass() {
|
|
return `button nice ${this.buttonClass || ' '}`;
|
|
},
|
|
},
|
|
methods: {
|
|
onClick() {
|
|
this.$emit('click');
|
|
},
|
|
},
|
|
};
|
|
</script>
|