mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-02 20:18:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			885 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			885 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 '../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>
 |