mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <label class="switch" :class="classObject">
 | 
						|
    <input
 | 
						|
      :id="id"
 | 
						|
      v-model="value"
 | 
						|
      class="switch-input"
 | 
						|
      :name="name"
 | 
						|
      :disabled="disabled"
 | 
						|
      type="checkbox"
 | 
						|
    />
 | 
						|
    <div class="switch-paddle" :for="name">
 | 
						|
      <span class="show-for-sr">on off</span>
 | 
						|
    </div>
 | 
						|
  </label>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    disabled: Boolean,
 | 
						|
    type: { type: String, default: '' },
 | 
						|
    size: { type: String, default: '' },
 | 
						|
    checked: Boolean,
 | 
						|
    name: { type: String, default: '' },
 | 
						|
    id: { type: String, default: '' },
 | 
						|
  },
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      value: null,
 | 
						|
    };
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    classObject() {
 | 
						|
      const { type, size, value } = this;
 | 
						|
      return {
 | 
						|
        [`is-${type}`]: type,
 | 
						|
        [`${size}`]: size,
 | 
						|
        checked: value,
 | 
						|
      };
 | 
						|
    },
 | 
						|
  },
 | 
						|
  watch: {
 | 
						|
    value(val) {
 | 
						|
      this.$emit('input', val);
 | 
						|
    },
 | 
						|
  },
 | 
						|
  beforeMount() {
 | 
						|
    this.value = this.checked;
 | 
						|
  },
 | 
						|
  mounted() {
 | 
						|
    this.$emit('input', (this.value = !!this.checked));
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 |