mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			60 lines
		
	
	
		
			995 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			995 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <button
 | 
						|
    :type="type"
 | 
						|
    data-testid="submit_button"
 | 
						|
    :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: '',
 | 
						|
    },
 | 
						|
    type: {
 | 
						|
      type: String,
 | 
						|
      default: 'submit',
 | 
						|
    },
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    computedClass() {
 | 
						|
      return `button nice ${this.buttonClass || ' '}`;
 | 
						|
    },
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    onClick() {
 | 
						|
      this.$emit('click');
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 |